Merge branch 'lammps:master' into type-labels

This commit is contained in:
Jacob Gissinger
2021-09-30 09:44:18 -04:00
committed by GitHub
1396 changed files with 36153 additions and 25022 deletions

View File

@ -62,7 +62,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));