From 2c6aa62977eda0cc80848514901908d21db3e50d Mon Sep 17 00:00:00 2001 From: Patrick Shriwise Date: Thu, 13 Jun 2019 22:38:45 -0500 Subject: [PATCH] Correcting indentation. --- src/geometry.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/geometry.cpp b/src/geometry.cpp index ce118c0e0c..a92a4d34e1 100644 --- a/src/geometry.cpp +++ b/src/geometry.cpp @@ -46,11 +46,11 @@ bool check_cell_overlap(Particle* p, bool error) if (c.contains(p->coord_[j].r, p->coord_[j].u, p->surface_)) { if (index_cell != p->coord_[j].cell) { if (error) { - std::stringstream err_msg; - err_msg << "Overlapping cells detected: " << c.id_ << ", " - << model::cells[p->coord_[j].cell]->id_ << " on universe " - << univ.id_; - fatal_error(err_msg); + std::stringstream err_msg; + err_msg << "Overlapping cells detected: " << c.id_ << ", " + << model::cells[p->coord_[j].cell]->id_ << " on universe " + << univ.id_; + fatal_error(err_msg); } return true; }