From 6f72619729e7f2d0aa0f42f553ba2d24314ab7c1 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 5 Mar 2026 17:29:36 -0600 Subject: [PATCH] Fix include guard in output.h (#3856) --- include/openmc/output.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/openmc/output.h b/include/openmc/output.h index 7fcaa81ba..0ad8b2fe5 100644 --- a/include/openmc/output.h +++ b/include/openmc/output.h @@ -62,7 +62,6 @@ void write_tallies(); void show_time(const char* label, double secs, int indent_level = 0); } // namespace openmc -#endif // OPENMC_OUTPUT_H ////////////////////////////////////// // Custom formatters @@ -89,3 +88,5 @@ struct formatter> { }; // namespace fmt } // namespace fmt + +#endif // OPENMC_OUTPUT_H