From 6d0ba5343664fe064cb205fa68000552b4dad731 Mon Sep 17 00:00:00 2001 From: shriwise Date: Thu, 6 Sep 2018 16:46:56 -0500 Subject: [PATCH] Removing necessary constructor for BoundingBox. --- include/openmc/surface.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/openmc/surface.h b/include/openmc/surface.h index f5b30e4135..f28ad28b71 100644 --- a/include/openmc/surface.h +++ b/include/openmc/surface.h @@ -47,11 +47,11 @@ struct BoundingBox { BoundingBox(double x_min, double x_max, - double y_min, double y_max, - double z_min, double z_max) : + double y_min, double y_max, + double z_min, double z_max) : xmin(x_min), xmax(x_max), - ymin(y_min), ymax(y_max), - zmin(z_min), zmax(z_max) {} + ymin(y_min), ymax(y_max), + zmin(z_min), zmax(z_max) {} double xmin; double xmax;