mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Fix Sequential Build
Include <cassert> for 'assert' macro.
This commit is contained in:
@@ -26,6 +26,7 @@
|
||||
|
||||
#include <opm/simulators/utils/DeferredLoggingErrorHelpers.hpp>
|
||||
|
||||
#include <cassert>
|
||||
#include <filesystem>
|
||||
#include <stdexcept>
|
||||
|
||||
@@ -61,7 +62,7 @@ HDF5File::HDF5File(const std::string& fileName,
|
||||
acc_tpl = H5Pcreate(H5P_FILE_ACCESS);
|
||||
H5Pset_fapl_mpio(acc_tpl, comm_, info);
|
||||
#else
|
||||
assert(0); // should be unreachable
|
||||
assert(false); // should be unreachable
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user