Windows z64: Disable warning 4267 via llpreprocessor rather than cmake files
(transplanted from 165fa5852652a1da005cf3b2201c192f028efd43)master
parent
c87d24ac71
commit
a590d1c63a
|
|
@ -81,10 +81,6 @@ if (WINDOWS)
|
|||
# Nicky: x64 implies SSE2
|
||||
if( NOT LL_64BIT_BUILD )
|
||||
add_definitions( /arch:SSE2 )
|
||||
else()
|
||||
# Otherwise disable 4267 ('var' : conversion from 'size_t' to 'type', possible loss of data)
|
||||
# This warning alas is all over the place and fixing it will touch a lot of code.
|
||||
add_definitions("/wd4267 /DLL_64BIT_BUILD" )
|
||||
endif()
|
||||
|
||||
# Are we using the crummy Visual Studio KDU build workaround?
|
||||
|
|
|
|||
|
|
@ -138,6 +138,12 @@
|
|||
#pragma warning( 3 : 4266 ) // 'function' : no override available for virtual member function from base 'type'; function is hidden
|
||||
#pragma warning (disable : 4180) // qualifier applied to function type has no meaning; ignored
|
||||
//#pragma warning( disable : 4284 ) // silly MS warning deep inside their <map> include file
|
||||
|
||||
#ifdef _M_AMD64
|
||||
// That one is all over the place for x64 builds.
|
||||
#pragma warning( disable : 4267 ) // 'var' : conversion from 'size_t' to 'type', possible loss of data)
|
||||
#endif
|
||||
|
||||
#pragma warning( disable : 4503 ) // 'decorated name length exceeded, name was truncated'. Does not seem to affect compilation.
|
||||
#pragma warning( disable : 4800 ) // 'BOOL' : forcing value to bool 'true' or 'false' (performance warning)
|
||||
#pragma warning( disable : 4996 ) // warning: deprecated
|
||||
|
|
|
|||
Loading…
Reference in New Issue