From 2aa3cb61f492545bc8a486d04b018ab709d4e19a Mon Sep 17 00:00:00 2001 From: pshriwise Date: Wed, 26 Sep 2018 22:28:35 -0500 Subject: [PATCH] Fixing indentation in surface header. --- include/openmc/surface.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/openmc/surface.h b/include/openmc/surface.h index 3be73bbd9..1eb505e45 100644 --- a/include/openmc/surface.h +++ b/include/openmc/surface.h @@ -114,13 +114,13 @@ public: class CSGSurface : public Surface { - public: +public: explicit CSGSurface(pugi::xml_node surf_node); CSGSurface(); void to_hdf5(hid_t group_id) const; - protected: +protected: virtual void to_hdf5_inner(hid_t group_id) const = 0; }; @@ -130,7 +130,7 @@ class CSGSurface : public Surface #ifdef DAGMC class DAGSurface : public Surface { - public: +public: moab::DagMC* dagmc_ptr_; DAGSurface(); double evaluate(Position r) const;