diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-11-11 22:00:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-11 22:00:37 +0100 |
commit | fb9418798d9421128c17a52c2b0160d71f015db0 (patch) | |
tree | 28b879639c7eafae6678ce99d05fcfd6b97df76b /src | |
parent | video_core: Treat implicit conversions as errors (diff) | |
download | yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.tar yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.tar.gz yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.tar.bz2 yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.tar.lz yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.tar.xz yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.tar.zst yuzu-fb9418798d9421128c17a52c2b0160d71f015db0.zip |
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() if (MSVC) target_compile_options(video_core PRIVATE /we4267) else() - target_compile_options(video_core PRIVATE -Werror=conversion -Wno-sign-conversion) + target_compile_options(video_core PRIVATE -Werror=conversion -Wno-error=sign-conversion) endif() |