diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-09-20 14:52:44 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-09-20 14:52:44 (GMT) |
commit | 9e9d2ccd40707ea966bd3e209b33a0c029ada1e4 (patch) | |
tree | 2f317f7f20896f0bf8a65067d8353a18e010c2da /tools/test/misc/vds | |
parent | d3b2e3cd7bfc60782a3bc4436346f8e99b41ede3 (diff) | |
download | hdf5-9e9d2ccd40707ea966bd3e209b33a0c029ada1e4.zip hdf5-9e9d2ccd40707ea966bd3e209b33a0c029ada1e4.tar.gz hdf5-9e9d2ccd40707ea966bd3e209b33a0c029ada1e4.tar.bz2 |
Fix VS2013 compile error
Diffstat (limited to 'tools/test/misc/vds')
-rw-r--r-- | tools/test/misc/vds/UC_common.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/test/misc/vds/UC_common.h b/tools/test/misc/vds/UC_common.h index 962a091..c3fdb91 100644 --- a/tools/test/misc/vds/UC_common.h +++ b/tools/test/misc/vds/UC_common.h @@ -14,6 +14,15 @@ #ifndef USE_CASE_COMMON_H #define USE_CASE_COMMON_H +/* Use FUNC to safely handle variations of C99 __func__ keyword handling */ +#ifdef H5_HAVE_C99_FUNC +#define FUNC __func__ +#elif defined(H5_HAVE_FUNCTION) +#define FUNC __FUNCTION__ +#else +#error "We need __func__ or __FUNCTION__ to test function names!" +#endif + /****************************************** * Symbols used across multiple use cases * ******************************************/ |