Skip to content

Commit e81ad7f

Browse files
committed
Style changes.
1 parent 6d1f305 commit e81ad7f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

include/openmc/mesh.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ class LibMesh : public UnstructuredMesh {
10181018
libMesh::MeshBase* m_; //!< pointer to libMesh MeshBase instance, always set
10191019
//!< during intialization
10201020
vector<unique_ptr<libMesh::PointLocatorBase>>
1021-
pl_; //!< per-thread point locators
1021+
pl_; //!< per-thread point locators
10221022
libMesh::BoundingBox bbox_; //!< bounding box of the mesh
10231023

10241024
private:

src/mesh.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3732,7 +3732,8 @@ const libMesh::Elem& LibMesh::get_element_from_bin(int bin) const
37323732

37333733
double LibMesh::volume(int bin) const
37343734
{
3735-
return this->get_element_from_bin(bin).volume() * length_multiplier_ * length_multiplier_ * length_multiplier_;
3735+
return this->get_element_from_bin(bin).volume() * length_multiplier_ *
3736+
length_multiplier_ * length_multiplier_;
37363737
}
37373738

37383739
AdaptiveLibMesh::AdaptiveLibMesh(libMesh::MeshBase& input_mesh,
@@ -3756,7 +3757,7 @@ AdaptiveLibMesh::AdaptiveLibMesh(libMesh::MeshBase& input_mesh,
37563757
: m_->active_elements_begin();
37573758
auto end = block_restrict_ ? m_->active_subdomain_set_elements_end(block_ids_)
37583759
: m_->active_elements_end();
3759-
for (const auto & elem : libMesh::as_range(begin, end)) {
3760+
for (const auto& elem : libMesh::as_range(begin, end)) {
37603761
bin_to_elem_map_.push_back(elem->id());
37613762
elem_to_bin_map_[elem->id()] = bin_to_elem_map_.size() - 1;
37623763
}

0 commit comments

Comments
 (0)