diff options
| author | 2019-11-11 18:00:37 -0300 | |
|---|---|---|
| committer | 2019-11-11 18:00:37 -0300 | |
| commit | fb9418798d9421128c17a52c2b0160d71f015db0 (patch) | |
| tree | 28b879639c7eafae6678ce99d05fcfd6b97df76b /src | |
| parent | video_core: Treat implicit conversions as errors (diff) | |
| download | yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.tar.gz yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.tar.xz yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.zip | |
video_core: Enable sign conversion warnings
Enable sign conversion warnings but don't treat them as errors.
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/CMakeLists.txt b/src/video_core/CMakeLists.txt index 35e933858..45d8eaf23 100644 --- a/src/video_core/CMakeLists.txt +++ b/src/video_core/CMakeLists.txt | |||
| @@ -184,5 +184,5 @@ endif() | |||
| 184 | if (MSVC) | 184 | if (MSVC) |
| 185 | target_compile_options(video_core PRIVATE /we4267) | 185 | target_compile_options(video_core PRIVATE /we4267) |
| 186 | else() | 186 | else() |
| 187 | target_compile_options(video_core PRIVATE -Werror=conversion -Wno-sign-conversion) | 187 | target_compile_options(video_core PRIVATE -Werror=conversion -Wno-error=sign-conversion) |
| 188 | endif() | 188 | endif() |