Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update vcpkg SHA to match the C++ repo #2869

Merged
merged 2 commits into from
Jul 12, 2024
Merged

Commits on Jul 12, 2024

  1. Configuration menu
    Copy the full SHA
    3c26774 View commit details
    Browse the repository at this point in the history
  2. sizeof('x') is 1 in C++, but in C, it is 4 (to be pedantic, it is not…

    … 4, but sizeof(int)).
    
    See https://stackoverflow.com/questions/2172943/why-is-the-size-of-a-character-sizeofa-different-in-c-and-c
    
    Fixes error C2220: the following warning is treated as an error
    iot_sample_common.c(337): warning C6396: sizeof('integerConstant') always returns the size of the underlying integer type.
    iot_sample_common.c(354): warning C6396: sizeof('integerConstant') always returns the size of the underlying integer type.
    antkmsft committed Jul 12, 2024
    Configuration menu
    Copy the full SHA
    8a6a5cf View commit details
    Browse the repository at this point in the history