mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 04:49:59 +00:00
video_core: Enforce C4244
Enforce implicit integer casts to a smaller type as errors.
This commit is contained in:
parent
05bd50a1cf
commit
03abe8bf85
1 changed files with 1 additions and 0 deletions
|
@ -293,6 +293,7 @@ endif()
|
|||
if (MSVC)
|
||||
target_compile_options(video_core PRIVATE
|
||||
/we4267 # 'var' : conversion from 'size_t' to 'type', possible loss of data
|
||||
/we4244 # 'var' : conversion from integer to 'type', possible loss of data
|
||||
/we4456 # Declaration of 'identifier' hides previous local declaration
|
||||
/we4457 # Declaration of 'identifier' hides function parameter
|
||||
/we4458 # Declaration of 'identifier' hides class member
|
||||
|
|
Loading…
Reference in a new issue