apply new logmesg() overload to a bunch of cases.

This commit is contained in:
Axel Kohlmeyer
2021-04-21 22:53:41 -04:00
parent 0cf1252f1f
commit d2cdb318ab
42 changed files with 259 additions and 297 deletions

View File

@ -300,9 +300,8 @@ Lattice::Lattice(LAMMPS *lmp, int narg, char **arg) : Pointers(lmp)
// print lattice spacings
if (comm->me == 0)
utils::logmesg(lmp,fmt::format("Lattice spacing in x,y,z = "
"{:.8} {:.8} {:.8}\n",
xlattice,ylattice,zlattice));
utils::logmesg(lmp,"Lattice spacing in x,y,z = {:.8} {:.8} {:.8}\n",
xlattice,ylattice,zlattice);
}
/* ---------------------------------------------------------------------- */