Disable C4355 warnings

This commit is contained in:
Mark Roszko 2025-06-15 10:06:20 -04:00
parent 50eae8fff9
commit 6a719e2c91

View File

@ -259,6 +259,8 @@ if( MSVC )
string( APPEND WARN_FLAGS_CXX " /wd5204 /wd4265" )
# disable "layout of class may have changed from a previous version of the compiler"
string( APPEND WARN_FLAGS_CXX " /wd4371" )
# disable "'this': used in base member initializer list"
string( APPEND WARN_FLAGS_CXX " /wd4355" )
# disable "relative include path contains '..'"
string( APPEND WARN_FLAGS_CXX " /wd4464" )
# disable "'const' variable is not used"