format changes

This commit is contained in:
Axel Kohlmeyer
2021-09-17 22:49:57 -04:00
parent cd3efc3fa8
commit 385220fd4b
62 changed files with 322 additions and 386 deletions

View File

@ -61,7 +61,7 @@ void WriteData::command(int narg, char **arg)
// if filename contains a "*", replace with current timestep
std::string file = arg[0];
std::size_t found = file.find("*");
std::size_t found = file.find('*');
if (found != std::string::npos)
file.replace(found,1,fmt::format("{}",update->ntimestep));