From 40885be7aafa04b1f6217d35faf13f77285fef37 Mon Sep 17 00:00:00 2001 From: Gavin Ridley Date: Tue, 21 Jan 2020 13:18:07 -0500 Subject: [PATCH] fix thing in surface.h --- include/openmc/surface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openmc/surface.h b/include/openmc/surface.h index 3ba147a5f0..784ecbcece 100644 --- a/include/openmc/surface.h +++ b/include/openmc/surface.h @@ -94,7 +94,7 @@ public: }; int id_; //!< Unique ID - Bc bc_; //!< Boundary condition + BoundaryType bc_; //!< Boundary condition std::string name_; //!< User-defined name explicit Surface(pugi::xml_node surf_node);