Skip to content

Commit 0a28add

Browse files
committed
fix a few syntax errors from the refactor
1 parent 96f130d commit 0a28add

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/preprocessing/partition/main.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ class preprocessingTriangulation : public triangulation
282282
}
283283

284284
SPDLOG_DEBUG("MPI Process {} : start {}, end {}, number {}",
285-
mpi_rank, face_start_id, face_end_idx, _local_faces.size());
285+
mpi_rank, face_start_idx, face_end_idx, _local_faces.size());
286286
}
287287
void read_h5(const std::string& mesh_filename)
288288
{
@@ -448,7 +448,7 @@ class preprocessingTriangulation : public triangulation
448448
CHM_THROW_EXCEPTION(mesh_error, "Created a mesh with 0 elements!");
449449
}
450450

451-
SPDLOG_DEBUG("Created a mesh with {} triangles", size_faces())
451+
SPDLOG_DEBUG("Created a mesh with {} triangles", size_faces());
452452

453453
}
454454

@@ -1215,7 +1215,7 @@ class preprocessingTriangulation : public triangulation
12151215
}
12161216
}
12171217

1218-
SPDLOG_DEBUG("This mesh partition has {} unique vertexes", vertex_global_id.size())
1218+
SPDLOG_DEBUG("This mesh partition has {} unique vertexes", vertex_global_id.size());
12191219
// build a list of all the above identified vertexes and set their local id
12201220
std::vector<Delaunay::Vertex_handle> local_vertexes; // vertexes that this part of the mesh needs
12211221
local_vertexes.resize(vertex_global_id.size());
@@ -1531,7 +1531,7 @@ int main(int argc, char* argv[])
15311531

15321532
if (vm.count("standalone"))
15331533
{
1534-
SPDLOG_WARN( << "Standalone option enabled. This will not write ghost faces and is intended to write a specific "
1534+
SPDLOG_WARN( "Standalone option enabled. This will not write ghost faces and is intended to write a specific "
15351535
"rank as a standalone mesh for debugging.");
15361536
}
15371537

0 commit comments

Comments
 (0)