7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-21 22:53:43 +00:00

Disable the new C5267 because we have alot of it

This commit is contained in:
Marek Roszko 2023-09-01 22:09:01 -04:00
parent 0317a1f687
commit 70c74322b0

View File

@ -245,4 +245,6 @@ if( MSVC )
string( APPEND WARN_FLAGS_CXX " /wd4868 /wd4866" )
# disable "XXX is not defined as a preprocessor macro, replacing with '0'"
string( APPEND WARN_FLAGS_CXX " /wd4668" )
# disable "definition of implicit copy constructor for 'X' is deprecated because it has a user-provided destructor"
string( APPEND WARN_FLAGS_CXX " /wd5267" )
endif()