diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2019-12-04 08:49:52 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2019-12-16 16:13:47 (GMT) |
commit | 957940befb6358345840a6943e8ff736cbdd11f7 (patch) | |
tree | f99b0d8ff9ef22e06af698320933df2eea84a3af /test/vds_env.c | |
parent | 19f32485cf50b1797583e9f31acccd7e55b8a2a2 (diff) | |
download | hdf5-957940befb6358345840a6943e8ff736cbdd11f7.zip hdf5-957940befb6358345840a6943e8ff736cbdd11f7.tar.gz hdf5-957940befb6358345840a6943e8ff736cbdd11f7.tar.bz2 |
Yanked -Wc++-compat from the flags used to build the C library in both
the Autotools and CMake.
Diffstat (limited to 'test/vds_env.c')
-rw-r--r-- | test/vds_env.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/vds_env.c b/test/vds_env.c index 19b2d96..3d5b5dd 100644 --- a/test/vds_env.c +++ b/test/vds_env.c @@ -312,8 +312,8 @@ main(void) if((my_fapl = H5Pcopy(fapl)) < 0) TEST_ERROR /* Loop through all the combinations of low/high version bounds */ - for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; H5_INC_ENUM(H5F_libver_t, low)) { - for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; H5_INC_ENUM(H5F_libver_t, high)) { + for(low = H5F_LIBVER_EARLIEST; low < H5F_LIBVER_NBOUNDS; low++) { + for(high = H5F_LIBVER_EARLIEST; high < H5F_LIBVER_NBOUNDS; high++) { char msg[80]; /* Message for file version bounds */ const char *low_string; /* The low bound string */ const char *high_string; /* The high bound string */ |