summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2020-10-29 23:36:44 -0400
committerGravatar Lioncash2020-10-30 00:13:26 -0400
commit11d0a6e7b8a31cb266b56f4f2689824d242adfbf (patch)
tree63186ee54ca1efc82655655650602e1d5c01f120 /src
parentGeneral: Make ignoring a discarded return value an error (diff)
downloadyuzu-11d0a6e7b8a31cb266b56f4f2689824d242adfbf.tar.gz
yuzu-11d0a6e7b8a31cb266b56f4f2689824d242adfbf.tar.xz
yuzu-11d0a6e7b8a31cb266b56f4f2689824d242adfbf.zip
General: Catch more expressions with no effect on MSVC
MSVC lets us fine-tune catching expressions with no side-effects a little more.
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 29c6ffc67..030cce92c 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -45,6 +45,10 @@ if (MSVC)
45 45
46 # Warnings 46 # Warnings
47 /W3 47 /W3
48 /we4547 # 'operator' : operator before comma has no effect; expected operator with side-effect
49 /we4548 # Expression before comma has no effect; expected expression with side-effect
50 /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'?
51 /we4555 # Expression has no effect; expected expression with side-effect
48 /we4834 # Discarding return value of function with 'nodiscard' attribute 52 /we4834 # Discarding return value of function with 'nodiscard' attribute
49 ) 53 )
50 54