fixed: another int -> hid_t fix for hdf5 1.10

This commit is contained in:
Arne Morten Kvarving
2018-10-23 12:03:18 +02:00
parent b37578eefd
commit 2736a69537
2 changed files with 2 additions and 2 deletions

View File

@@ -248,7 +248,7 @@ void HDF5Writer::readString(const std::string& name, std::string& out, bool clos
void HDF5Writer::writeArray(hid_t group, const std::string& name,
int len, const void* data, int type)
int len, const void* data, hid_t type)
{
#ifdef HAS_HDF5
#ifdef HAVE_MPI

View File

@@ -172,7 +172,7 @@ protected:
//! \param[in] data The array to write
//! \param[in] type The HDF5 type for the data (see H5T)
void writeArray(hid_t group, const std::string& name,
int len, const void* data, int type);
int len, const void* data, hid_t type);
//! \brief Internal helper function writing a SIM's basis (geometry) to file.
//! \param[in] SIM The SIM we want to write basis for