mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Apply templated write_message to mesh.cpp
This commit is contained in:
parent
2113c4c06b
commit
1ae1d9dc8f
1 changed files with 1 additions and 1 deletions
|
|
@ -2051,7 +2051,7 @@ void
|
|||
UnstructuredMesh::write(std::string base_filename) const {
|
||||
// add extension to the base name
|
||||
auto filename = base_filename + ".vtk";
|
||||
write_message("Writing unstructured mesh " + filename + "...", 5);
|
||||
write_message(5, "Writing unstructured mesh {}...", filename);
|
||||
filename = settings::path_output + filename;
|
||||
|
||||
// write the tetrahedral elements of the mesh only
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue