more use of fmtlib and std::string

This commit is contained in:
Axel Kohlmeyer
2020-06-25 21:32:30 -04:00
parent 4816c5c7cc
commit e4a3a518f7
12 changed files with 94 additions and 162 deletions

View File

@ -1157,11 +1157,8 @@ void ReadData::header(int firstpass)
parse_keyword(1);
for (n = 0; n < NSECTIONS; n++)
if (strcmp(keyword,section_keywords[n]) == 0) break;
if (n == NSECTIONS) {
char str[128];
sprintf(str,"Unknown identifier in data file: %s",keyword);
error->all(FLERR,str);
}
if (n == NSECTIONS)
error->all(FLERR,fmt::format("Unknown identifier in data file: {}",keyword));
// error checks on header values
// must be consistent with atom style and other header values