summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Morph2021-06-28 03:54:37 -0400
committerGravatar Morph2021-06-28 14:20:25 -0400
commite828c5a559cda1ac8d6f445d609940cd24c2d137 (patch)
tree3245753f8300f57386b8faae1e26ff8e8a5755e6
parentinput_common: Enforce C4242 (diff)
downloadyuzu-e828c5a559cda1ac8d6f445d609940cd24c2d137.tar.gz
yuzu-e828c5a559cda1ac8d6f445d609940cd24c2d137.tar.xz
yuzu-e828c5a559cda1ac8d6f445d609940cd24c2d137.zip
core: Enforce C4242
Diffstat (limited to '')
-rw-r--r--src/core/CMakeLists.txt9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt
index 83b5b7676..19b970981 100644
--- a/src/core/CMakeLists.txt
+++ b/src/core/CMakeLists.txt
@@ -654,17 +654,14 @@ endif()
654 654
655if (MSVC) 655if (MSVC)
656 target_compile_options(core PRIVATE 656 target_compile_options(core PRIVATE
657 /we4018 # 'expression' : signed/unsigned mismatch 657 /we4242 # 'identifier': conversion from 'type1' to 'type2', possible loss of data
658 /we4244 # 'argument' : conversion from 'type1' to 'type2', possible loss of data (floating-point) 658 /we4244 # 'conversion': conversion from 'type1' to 'type2', possible loss of data
659 /we4245 # 'conversion' : conversion from 'type1' to 'type2', signed/unsigned mismatch 659 /we4245 # 'conversion': conversion from 'type1' to 'type2', signed/unsigned mismatch
660 /we4254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data 660 /we4254 # 'operator': conversion from 'type1:field_bits' to 'type2:field_bits', possible loss of data
661 /we4267 # 'var' : conversion from 'size_t' to 'type', possible loss of data
662 /we4305 # 'context' : truncation from 'type1' to 'type2'
663 /we4456 # Declaration of 'identifier' hides previous local declaration 661 /we4456 # Declaration of 'identifier' hides previous local declaration
664 /we4457 # Declaration of 'identifier' hides function parameter 662 /we4457 # Declaration of 'identifier' hides function parameter
665 /we4458 # Declaration of 'identifier' hides class member 663 /we4458 # Declaration of 'identifier' hides class member
666 /we4459 # Declaration of 'identifier' hides global declaration 664 /we4459 # Declaration of 'identifier' hides global declaration
667 /we4715 # 'function' : not all control paths return a value
668 ) 665 )
669else() 666else()
670 target_compile_options(core PRIVATE 667 target_compile_options(core PRIVATE