@@ -282,7 +282,7 @@ class preprocessingTriangulation : public triangulation
282
282
}
283
283
284
284
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 ());
286
286
}
287
287
void read_h5 (const std::string& mesh_filename)
288
288
{
@@ -448,7 +448,7 @@ class preprocessingTriangulation : public triangulation
448
448
CHM_THROW_EXCEPTION (mesh_error, " Created a mesh with 0 elements!" );
449
449
}
450
450
451
- SPDLOG_DEBUG (" Created a mesh with {} triangles" , size_faces ())
451
+ SPDLOG_DEBUG (" Created a mesh with {} triangles" , size_faces ());
452
452
453
453
}
454
454
@@ -1215,7 +1215,7 @@ class preprocessingTriangulation : public triangulation
1215
1215
}
1216
1216
}
1217
1217
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 ());
1219
1219
// build a list of all the above identified vertexes and set their local id
1220
1220
std::vector<Delaunay::Vertex_handle> local_vertexes; // vertexes that this part of the mesh needs
1221
1221
local_vertexes.resize (vertex_global_id.size ());
@@ -1531,7 +1531,7 @@ int main(int argc, char* argv[])
1531
1531
1532
1532
if (vm.count (" standalone" ))
1533
1533
{
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 "
1535
1535
" rank as a standalone mesh for debugging." );
1536
1536
}
1537
1537
0 commit comments