clang-format

This commit is contained in:
Labossiere-Hickman, Travis James 2026-07-17 10:04:56 -06:00
parent 60a2ff1fc1
commit 432298e740
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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);