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 e9aa1821e8
commit dc61af8eb1
4 changed files with 0 additions and 12 deletions

View file

@ -243,8 +243,6 @@ if (MSVC)
/W4
/we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data
/we4244 # 'argument' : conversion from 'type1' to 'type2', possible loss of data (floating-point)
/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
)