< prev index next >

src/share/vm/utilities/globalDefinitions_visCPP.hpp

Print this page
rev 9258 : [mq]: erik-diff

*** 169,181 **** #define lseek _lseek #define unlink _unlink #define strdup _strdup #endif - // Visual Studio 2013 introduced strtoull(); before, one has to use _strtoui64() instead. #if _MSC_VER < 1800 #define strtoull _strtoui64 #endif #pragma warning( disable : 4100 ) // unreferenced formal parameter #pragma warning( disable : 4127 ) // conditional expression is constant --- 169,183 ---- #define lseek _lseek #define unlink _unlink #define strdup _strdup #endif #if _MSC_VER < 1800 + // Visual Studio 2013 introduced strtoull(); before, one has to use _strtoui64() instead. #define strtoull _strtoui64 + // Fixes some wrong warnings about 'this' : used in base member initializer list + #pragma warning( disable : 4355 ) #endif #pragma warning( disable : 4100 ) // unreferenced formal parameter #pragma warning( disable : 4127 ) // conditional expression is constant
< prev index next >