From 5e4aef6cb05eb87845cb30c68a19134d3fd7d732 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Fri, 25 Jun 2021 07:21:33 -0500 Subject: [PATCH] Removing virtual on Cell::to_hdf5. --- include/openmc/cell.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openmc/cell.h b/include/openmc/cell.h index f04f9f6b76..8bcc1ea067 100644 --- a/include/openmc/cell.h +++ b/include/openmc/cell.h @@ -121,7 +121,7 @@ public: //! Write all information needed to reconstruct the cell to an HDF5 group. //! \param group_id An HDF5 group id. - virtual void to_hdf5(hid_t group_id) const; + void to_hdf5(hid_t group_id) const; virtual void to_hdf5_inner(hid_t group_id) const = 0;