CMakeLists: Remove redundant warnings

These warnings are already included in /W3.
This commit is contained in:
Morph 2022-10-21 02:34:06 -04:00
parent bad3025951
commit cae108404a
4 changed files with 0 additions and 12 deletions

View file

@ -41,8 +41,6 @@ if (MSVC)
/W4
/we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data
/we4244 # 'conversion': conversion from 'type1' to 'type2', possible loss of data
/we4245 # 'conversion': conversion from 'type1' to 'type2', signed/unsigned mismatch
/we4254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data
/we4800 # Implicit conversion from 'type' to bool. Possible information loss
)