Fix MSVC warnings (C4244, C4267, C4305, C4838)#397
Open
MajorMurphy wants to merge 3 commits into
Open
Conversation
- 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
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: