From ec4e895fd80a1d0f20ae825b89f2e06987902dca Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Fri, 2 Nov 2018 08:02:26 +0100 Subject: [PATCH] Fixed minimum version number for HDF5 class hierarchy --- src/hdf5_array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hdf5_array.hpp b/src/hdf5_array.hpp index 693566a..f6d2f29 100644 --- a/src/hdf5_array.hpp +++ b/src/hdf5_array.hpp @@ -51,7 +51,7 @@ knowledge of the CeCILL license and that you accept its terms. #include namespace CosmoTool { -#if H5_VERSION_GE(1,10,0) +#if H5_VERSION_GE(1,8,20) typedef H5::CommonFG H5_CommonFileGroup; #else typedef H5::Group H5_CommonFileGroup;