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
parent
commit
fb9418798d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/video_core/CMakeLists.txt

2
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()
Loading…
Cancel
Save