diff options
| author | 2020-10-30 14:57:54 -0400 | |
|---|---|---|
| committer | 2020-10-30 14:57:58 -0400 | |
| commit | 14a97d082e996a22ff8aa7b57c3ed6fe5912b9cf (patch) | |
| tree | 8280bdb5edf7b4621012e9551bef572d11e90dba | |
| parent | Merge pull request #4868 from lioncash/discard-error (diff) | |
| download | yuzu-14a97d082e996a22ff8aa7b57c3ed6fe5912b9cf.tar.gz yuzu-14a97d082e996a22ff8aa7b57c3ed6fe5912b9cf.tar.xz yuzu-14a97d082e996a22ff8aa7b57c3ed6fe5912b9cf.zip | |
CMakeLists: Resolve MSVC build failures
Prevents the compiler tripping up about Windows headers.
Diffstat (limited to '')
| -rw-r--r-- | src/CMakeLists.txt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 030cce92c..dbda528ce 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt | |||
| @@ -46,7 +46,6 @@ if (MSVC) | |||
| 46 | # Warnings | 46 | # Warnings |
| 47 | /W3 | 47 | /W3 |
| 48 | /we4547 # 'operator' : operator before comma has no effect; expected operator with side-effect | 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'? | 49 | /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'? |
| 51 | /we4555 # Expression has no effect; expected expression with side-effect | 50 | /we4555 # Expression has no effect; expected expression with side-effect |
| 52 | /we4834 # Discarding return value of function with 'nodiscard' attribute | 51 | /we4834 # Discarding return value of function with 'nodiscard' attribute |