diff --git a/src/mesh.cpp b/src/mesh.cpp index 48c3acf40e..7b5db5a2b5 100644 --- a/src/mesh.cpp +++ b/src/mesh.cpp @@ -3846,7 +3846,7 @@ void LibMesh::set_score_data(const std::string& var_name, unsigned int std_dev_num = variable_map_.at(std_dev_name); for (auto it = m_->local_elements_begin(); it != m_->local_elements_end(); - it++) { + it++) { if (!(*it)->active()) { continue; } diff --git a/src/tallies/filter_meshsurface.cpp b/src/tallies/filter_meshsurface.cpp index 46626977bf..c7205aad34 100644 --- a/src/tallies/filter_meshsurface.cpp +++ b/src/tallies/filter_meshsurface.cpp @@ -32,7 +32,7 @@ std::string MeshSurfaceFilter::text_label(int bin) const int i_mesh = bin / (4 * n_dim); int surf_index = bin % (4 * n_dim); - // Get mesh index part of label, then append the surface part. + // Get mesh index part of label, then append the surface part. // The surface is labeled by the underlying mesh. std::string out = MeshFilter::text_label(i_mesh); out += mesh.surface_bin_label(surf_index);