From 21781e21c3118528f7c7ad294dd15135580da1d7 Mon Sep 17 00:00:00 2001 From: skywalker_cn <2324714651@qq.com> Date: Thu, 11 Sep 2025 08:13:58 +0000 Subject: [PATCH] Fix the format error --- include/openmc/universe.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/openmc/universe.h b/include/openmc/universe.h index 1c9fcceabf..796f9e6508 100644 --- a/include/openmc/universe.h +++ b/include/openmc/universe.h @@ -27,10 +27,10 @@ extern vector> universes; class Universe { public: - int32_t id_; //!< Unique ID - vector cells_; //!< Cells within this universe + int32_t id_; //!< Unique ID + vector cells_; //!< Cells within this universe int filled_with_triso_base_ = -1; //!< ID of cell filled with virtual lattice - int32_t n_instances_; //!< Number of instances of this universe + int32_t n_instances_; //!< Number of instances of this universe //! \brief Write universe information to an HDF5 group. //! \param group_id An HDF5 group id.