diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2019-11-11 18:00:37 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-11 18:00:37 -0300 |
commit | fb9418798d9421128c17a52c2b0160d71f015db0 (patch) | |
tree | 28b879639c7eafae6678ce99d05fcfd6b97df76b /src | |
parent | 18c1cb68fd9b49751344f09413307d80a346f1f9 (diff) |
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 35e933858a..45d8eaf23c 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() |