summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph2021-06-28 03:54:22 -0400
committerGravatar Morph2021-06-28 14:20:25 -0400
commit58550cfcdcc288678a84d2ffa2d4856071b2374c (patch)
tree4600ab52ea62556935e239eff914ce3674bdaf6e /src
parentvideo_core: Enforce C4242 (diff)
downloadyuzu-58550cfcdcc288678a84d2ffa2d4856071b2374c.tar.gz
yuzu-58550cfcdcc288678a84d2ffa2d4856071b2374c.tar.xz
yuzu-58550cfcdcc288678a84d2ffa2d4856071b2374c.zip
input_common: Enforce C4242
Diffstat (limited to 'src')
-rw-r--r--src/input_common/CMakeLists.txt16
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 )
50else() 42else()
51 target_compile_options(input_common PRIVATE 43 target_compile_options(input_common PRIVATE