From c1d8f06ac1ced6a9b40c6971538c4148dea6311b Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Thu, 18 Jul 2019 14:49:45 -0500 Subject: [PATCH] Restoring initial universe bounding box. --- src/cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cell.cpp b/src/cell.cpp index fc9a25e2e2..35187fa9bb 100644 --- a/src/cell.cpp +++ b/src/cell.cpp @@ -207,7 +207,7 @@ Universe::to_hdf5(hid_t universes_group) const } BoundingBox Universe::bounding_box() const { - BoundingBox bbox; + BoundingBox bbox = {INFTY, -INFTY, INFTY, -INFTY, INFTY, -INFTY}; if (cells_.size() == 0) { return {}; } else {