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;