Fix MSVC warnings (C4244, C4267, C4305, C4838) - #397
Open
MajorMurphy wants to merge 4 commits into
Open
Conversation
MajorMurphy
force-pushed
the
fix-msvc-warnings
branch
from
June 11, 2026 21:20
c7b791b to
154127a
Compare
- icc.cpp: use float literals in Matrix3x3 aggregate initializer (C4838) - icc.cpp: explicit cast for strlen result assigned to uint32_t (C4267) - jpegdecoderhelper.cpp: explicit cast for std::ceil result assigned to unsigned int (C4244) - jpegencoderhelper.cpp: explicit casts for std::ceil and strlen results assigned to unsigned int (C4244, C4267) - CMakeLists.txt: remove /wd4244, /wd4267, /wd4305, /wd4838 suppressions
including: C4244, C4267, C4305, C4838
The v2.0.0 container work added call sites that narrow size_t to the int
lengths libheif's API takes, and none of them had been compiled at /W3
before. Adds the missing casts so the warning-level change in the previous
commit leaves the core target warning-free:
heifultrahdr.cpp, avifultrahdr.cpp heif_context_add_exif_metadata and
heif_context_encode_gain_map_image
ultrahdr_api.cpp heif_check_filetype (x2),
heif_image_handle_get_gain_map_metadata_size,
and the exif_size argument of
parseGainMapMetadata
jpegr.cpp the same parseGainMapMetadata argument
jpegrutils.cpp pow() returns double; altHeadroom is float
Wrapped by hand rather than with clang-format: these files are already 55 to
92 lines away from the repo's own .clang-format, so running it would bury the
change in unrelated reformatting. Every touched line is within the 100 column
limit.
MajorMurphy
force-pushed
the
fix-msvc-warnings
branch
from
August 20, 2026 17:23
154127a to
7304186
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Goal
CMakeLists.txt mentioned a TODO task of fixing several MSVC warnings
Solution
Upon removing the suppressors, warnings were not visible until explicitly setting warning level
/W3. MSVC defaults to/W1, which is not high enough to display these warning messages. Setting it to/W3makes it consistent with the-Wall -Wextrafor non-MSVC buildsAll occurrences of C4244, C4267, C4305, C4838 were resolved.
Edited files:
C26812 was not observed, even when building with
/analyze, so that warning suppression was also removed.Further warning messages do occur at W4 level, which could be addressed in a future pull request.
Tested
Visual Studio 2026 :
Ubuntu: