mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-09 07:32:32 +08:00
Added a work-around for va_copy() on pre-2013 versions of Visual Studio.
This commit is contained in:
parent
339aebc69a
commit
1b9326d37f
@ -66,6 +66,9 @@ typedef __int64 h5_stat_size_t;
|
||||
#define HDtzset() _tzset()
|
||||
#define HDunlink(S) _unlink(S)
|
||||
#define HDwrite(F,M,Z) _write(F,M,Z)
|
||||
#if (_MSC_VER < 1800)
|
||||
#define HDva_copy(D,S) ((D) = (S))
|
||||
#endif /* MSC_VER < 1800 */
|
||||
|
||||
#ifdef H5_HAVE_VISUAL_STUDIO
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user