diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-12-17 22:48:39 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-12-17 22:48:39 (GMT) |
commit | a7618f432b671ad041ae63a83bf9b9bb08096dbe (patch) | |
tree | 0d2462f0530d94bb59aa830026d2097152a2e011 | |
parent | a71b77433ccf313086f326e72bb7055d94dec3d2 (diff) | |
download | hdf5-a7618f432b671ad041ae63a83bf9b9bb08096dbe.zip hdf5-a7618f432b671ad041ae63a83bf9b9bb08096dbe.tar.gz hdf5-a7618f432b671ad041ae63a83bf9b9bb08096dbe.tar.bz2 |
Updated with extra sanity check and improved comment.
-rw-r--r-- | src/H5VLpassthru.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/H5VLpassthru.c b/src/H5VLpassthru.c index 82c18af..49102d7 100644 --- a/src/H5VLpassthru.c +++ b/src/H5VLpassthru.c @@ -41,10 +41,12 @@ /* (Uncomment to enable) */ /* #define ENABLE_PASSTHRU_LOGGING */ -/* Windows missing va_copy() hack (from H5win2_defs.h) */ -#if defined(_WIN32) && (_MSC_VER < 1800) +/* Hack for missing va_copy() in old Visual Studio editions + * (from H5win2_defs.h - used on VS2012 and earlier) + */ +#if defined(_WIN32) && defined(_MSC_VER) && (_MSC_VER < 1800) #define va_copy(D,S) ((D) = (S)) -#endif /* defined(_WIN32) && (_MSC_VER < 1800) */ +#endif /************/ /* Typedefs */ |