Skip to content
Snippets Groups Projects
Commit 59cbaaa5 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix H5_HAVE_PARALLEL macro use [ci-skip]

parent d36b8a0d
No related branches found
No related tags found
1 merge request!176Add HDF5 support
...@@ -82,7 +82,13 @@ std::string ...@@ -82,7 +82,13 @@ std::string
BuildInfo::hdf5Library() BuildInfo::hdf5Library()
{ {
#ifdef PUGS_HAS_HDF5 #ifdef PUGS_HAS_HDF5
return stringify(H5_VERSION) + ((H5_HAVE_PARALLEL) ? " [parallel]" : " [sequential]");
#ifdef H5_HAVE_PARALLEL
return stringify(H5_VERSION) + " [parallel]";
#else
return stringify(H5_VERSION) + " [sequential]";
#endif // H5_HAVE_PARALLEL
#else #else
return "none"; return "none";
#endif // PUGS_HAS_HDF5 #endif // PUGS_HAS_HDF5
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment