Browse Source
video_core: Enable sign conversion warnings
Enable sign conversion warnings but don't treat them as errors.
pull/15/merge
Rodrigo Locatti
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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() |