mirror of
https://github.com/yuzu-mirror/yuzu
synced 2024-11-24 16:03:02 +00:00
video_core: Enable sign conversion warnings
Enable sign conversion warnings but don't treat them as errors.
This commit is contained in:
parent
18c1cb68fd
commit
fb9418798d
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue