8141134: Remove unnecessary pragma warning(disable:4355) from GC code

Reviewed-by: ehelin, simonis, stuefe
This commit is contained in:
Thomas Schatzl 2015-11-04 17:36:29 +01:00
parent 7ac4628585
commit a6231d3f70
7 changed files with 3 additions and 40 deletions

View file

@ -171,9 +171,11 @@ const jlong max_jlong = CONST64(0x7fffffffffffffff);
#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