mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 13:54:38 +02:00
8150079: MSVC prior to VS 2013 doesn't know the 'va_copy' macro
Reviewed-by: dholmes
This commit is contained in:
parent
1153ecb06f
commit
a5c5a3b609
2 changed files with 2 additions and 6 deletions
|
@ -174,6 +174,8 @@ const jlong max_jlong = CONST64(0x7fffffffffffffff);
|
|||
#if _MSC_VER < 1800
|
||||
// Visual Studio 2013 introduced strtoull(); before, one has to use _strtoui64() instead.
|
||||
#define strtoull _strtoui64
|
||||
// Visual Studio prior to 2013 had no va_copy, but could safely copy va_list by assignement
|
||||
#define va_copy(dest, src) dest = src
|
||||
// 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