-----------------------------------------------------------------------------
| 123 | } |
| 124 | //----------------------------------------------------------------------------- |
| 125 | void io::hdf5::flush_file(hid_t handle) |
| 126 | { |
| 127 | if (H5Fflush(handle, H5F_SCOPE_GLOBAL) < 0) |
| 128 | throw std::runtime_error("Failed to flush HDF5 file."); |
| 129 | } |
| 130 | //----------------------------------------------------------------------------- |
| 131 | std::filesystem::path io::hdf5::get_filename(hid_t handle) |
| 132 | { |
nothing calls this directly
no outgoing calls
no test coverage detected