build: msvc: silence 64->32 bit conversion warning until the codebase is cleaned up
This commit is contained in:
parent
f0d1c8488b
commit
9688af5be3
|
|
@ -124,6 +124,10 @@ if (MSVC)
|
||||||
add_definitions("/wd4244") # disable "conversion from .. to .., possible loss of data" warning
|
add_definitions("/wd4244") # disable "conversion from .. to .., possible loss of data" warning
|
||||||
add_definitions("/wd4018") # disable "signed/unsigned mismatch" warning
|
add_definitions("/wd4018") # disable "signed/unsigned mismatch" warning
|
||||||
add_definitions("/wd4200") # disable "nonstandard extension used: zero-sized array in struct/union" warning
|
add_definitions("/wd4200") # disable "nonstandard extension used: zero-sized array in struct/union" warning
|
||||||
|
add_definitions("/wd4264") # disable "conversion from 'size_t' to 'int', possible loss of data" warning
|
||||||
|
add_definitions("/wd4267") # disable "conversion from 'size_t' to 'int', possible loss of data" warning
|
||||||
|
add_definitions("/wd4305") # disable "truncation from 'double' to 'float'" warning
|
||||||
|
|
||||||
endif (MSVC)
|
endif (MSVC)
|
||||||
|
|
||||||
# 10.9: minimum version that supports unordered_map
|
# 10.9: minimum version that supports unordered_map
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue