--- old/src/share/vm/utilities/globalDefinitions_visCPP.hpp 2015-11-04 13:12:04.596257601 +0100 +++ new/src/share/vm/utilities/globalDefinitions_visCPP.hpp 2015-11-04 13:12:04.516255235 +0100 @@ -171,9 +171,11 @@ #define strdup _strdup #endif -// Visual Studio 2013 introduced strtoull(); before, one has to use _strtoui64() instead. #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