diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-09-20 15:49:27 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-09-20 15:49:27 (GMT) |
commit | 2713d84ed3c392407abe74c893467b2dbebc509b (patch) | |
tree | 182768fb388f4e32823d8b64069731f92bac6544 /tools | |
parent | f25e3bd91ffe63f14b89e18335094f7e60ce47ff (diff) | |
download | hdf5-2713d84ed3c392407abe74c893467b2dbebc509b.zip hdf5-2713d84ed3c392407abe74c893467b2dbebc509b.tar.gz hdf5-2713d84ed3c392407abe74c893467b2dbebc509b.tar.bz2 |
Fix VS2013 build error
Diffstat (limited to 'tools')
-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 * ******************************************/ |