mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 13:54:38 +02:00
8141134: Remove unnecessary pragma warning(disable:4355) from GC code
Reviewed-by: ehelin, simonis, stuefe
This commit is contained in:
parent
7ac4628585
commit
a6231d3f70
7 changed files with 3 additions and 40 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue