summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Samay Navale2023-11-07 02:20:29 +0530
committerGravatar GitHub2023-11-07 02:20:29 +0530
commit4c6217f09bbf404072d1e7ebf2205a4f221c4771 (patch)
treec7ac9865770085cb42d3b848d640ac05c1c75b90
parentUpdate CMakeLists.txt (diff)
downloadyuzu-4c6217f09bbf404072d1e7ebf2205a4f221c4771.tar.gz
yuzu-4c6217f09bbf404072d1e7ebf2205a4f221c4771.tar.xz
yuzu-4c6217f09bbf404072d1e7ebf2205a4f221c4771.zip
Update CMakeLists.txt
Diffstat (limited to '')
-rw-r--r--src/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 5727b6f0a..d2ca4904a 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -69,7 +69,7 @@ if (MSVC)
69 /we4265 # 'class': class has virtual functions, but destructor is not virtual 69 /we4265 # 'class': class has virtual functions, but destructor is not virtual
70 /we4388 # 'expression': signed/unsigned mismatch 70 /we4388 # 'expression': signed/unsigned mismatch
71 /we4389 # 'operator': signed/unsigned mismatch 71 /we4389 # 'operator': signed/unsigned mismatch
72 /we4456 # Declaration of 'identifier' hides a previous local declaration 72 /we4456 # Declaration of 'identifier' hides previous local declaration
73 /we4457 # Declaration of 'identifier' hides function parameter 73 /we4457 # Declaration of 'identifier' hides function parameter
74 /we4458 # Declaration of 'identifier' hides class member 74 /we4458 # Declaration of 'identifier' hides class member
75 /we4459 # Declaration of 'identifier' hides global declaration 75 /we4459 # Declaration of 'identifier' hides global declaration
@@ -84,7 +84,7 @@ if (MSVC)
84 84
85 /wd4100 # 'identifier': unreferenced formal parameter 85 /wd4100 # 'identifier': unreferenced formal parameter
86 /wd4324 # 'struct_name': structure was padded due to __declspec(align()) 86 /wd4324 # 'struct_name': structure was padded due to __declspec(align())
87 /wd4201 # nonstandard extension used: nameless struct/union 87 /wd4201 # nonstandard extension used : nameless struct/union
88 /wd4702 # unreachable code (when used with LTO) 88 /wd4702 # unreachable code (when used with LTO)
89 ) 89 )
90 90