From 3dfc2da2a5e82ec12cc3cca0cb6f8493c7de71e2 Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Wed, 11 Sep 2019 11:00:08 -0500 Subject: [PATCH] Removing unused bounding box method. --- include/openmc/surface.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/openmc/surface.h b/include/openmc/surface.h index 9cdc460bb..d61ae07ce 100644 --- a/include/openmc/surface.h +++ b/include/openmc/surface.h @@ -83,13 +83,6 @@ struct BoundingBox return *this; } - inline bool is_valid() { - return xmin <= xmax && - ymin <= ymax && - zmin <= zmax; - } - - }; //==============================================================================