-----------------------------------------------------------------------------
| 117 | } |
| 118 | //----------------------------------------------------------------------------- |
| 119 | void io::hdf5::close_file(hid_t handle) |
| 120 | { |
| 121 | if (H5Fclose(handle) < 0) |
| 122 | throw std::runtime_error("Failed to close HDF5 file."); |
| 123 | } |
| 124 | //----------------------------------------------------------------------------- |
| 125 | void io::hdf5::flush_file(hid_t handle) |
| 126 | { |
nothing calls this directly
no outgoing calls
no test coverage detected