diff options
| author | 2022-10-21 02:34:06 -0400 | |
|---|---|---|
| committer | 2022-10-22 15:02:04 -0400 | |
| commit | e6ab1f673b88b1af6bd966886249c7824ec5dbd4 (patch) | |
| tree | 045b57ae71c4b8efe34be8504d86638f13cf61ac /src/CMakeLists.txt | |
| parent | CMakeLists: Remove all redundant warnings (diff) | |
| download | yuzu-e6ab1f673b88b1af6bd966886249c7824ec5dbd4.tar.gz yuzu-e6ab1f673b88b1af6bd966886249c7824ec5dbd4.tar.xz yuzu-e6ab1f673b88b1af6bd966886249c7824ec5dbd4.zip | |
general: Enforce C4800 everywhere except in video_core
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 71853eaad..cfd80886c 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt | |||
| @@ -76,6 +76,7 @@ if (MSVC) | |||
| 76 | /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'? | 76 | /we4549 # 'operator1': operator before comma has no effect; did you intend 'operator2'? |
| 77 | /we4555 # Expression has no effect; expected expression with side-effect | 77 | /we4555 # Expression has no effect; expected expression with side-effect |
| 78 | /we4715 # 'function': not all control paths return a value | 78 | /we4715 # 'function': not all control paths return a value |
| 79 | /we4826 # Conversion from 'type1' to 'type2' is sign-extended. This may cause unexpected runtime behavior. | ||
| 79 | /we4834 # Discarding return value of function with 'nodiscard' attribute | 80 | /we4834 # Discarding return value of function with 'nodiscard' attribute |
| 80 | /we5038 # data member 'member1' will be initialized after data member 'member2' | 81 | /we5038 # data member 'member1' will be initialized after data member 'member2' |
| 81 | /we5245 # 'function': unreferenced function with internal linkage has been removed | 82 | /we5245 # 'function': unreferenced function with internal linkage has been removed |