diff options
| -rw-r--r-- | src/input_common/CMakeLists.txt | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/src/input_common/CMakeLists.txt b/src/input_common/CMakeLists.txt index 7c5763f9c..c3423c815 100644 --- a/src/input_common/CMakeLists.txt +++ b/src/input_common/CMakeLists.txt | |||
| @@ -34,18 +34,10 @@ if (MSVC) | |||
| 34 | /W4 | 34 | /W4 |
| 35 | /WX | 35 | /WX |
| 36 | 36 | ||
| 37 | # 'expression' : signed/unsigned mismatch | 37 | /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data |
| 38 | /we4018 | 38 | /we4244 # 'conversion': conversion from 'type1' to 'type2', possible loss of data |
| 39 | # 'argument' : conversion from 'type1' to 'type2', possible loss of data (floating-point) | 39 | /we4245 # 'conversion': conversion from 'type1' to 'type2', signed/unsigned mismatch |
| 40 | /we4244 | 40 | /we4254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data |
| 41 | # 'conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch | ||
| 42 | /we4245 | ||
| 43 | # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data | ||
| 44 | /we4254 | ||
| 45 | # 'var' : conversion from 'size_t' to 'type', possible loss of data | ||
| 46 | /we4267 | ||
| 47 | # 'context' : truncation from 'type1' to 'type2' | ||
| 48 | /we4305 | ||
| 49 | ) | 41 | ) |
| 50 | else() | 42 | else() |
| 51 | target_compile_options(input_common PRIVATE | 43 | target_compile_options(input_common PRIVATE |