Applying formatter

This commit is contained in:
Patrick Shriwise 2023-01-13 00:00:16 -06:00
parent 6f0c6f5296
commit d0988327fe
7 changed files with 86 additions and 66 deletions

View file

@ -94,7 +94,7 @@ IndependentSource::IndependentSource(pugi::xml_node node)
space_ = UPtrSpace {new CylindricalIndependent(node_space)};
} else if (type == "spherical") {
space_ = UPtrSpace {new SphericalIndependent(node_space)};
} else if (type =="mesh"){
} else if (type == "mesh") {
space_ = UPtrSpace {new MeshSpatial(node_space)};
} else if (type == "box") {
space_ = UPtrSpace {new SpatialBox(node_space)};