Remove more c_str()

This commit is contained in:
Richard Berger
2020-06-05 12:13:41 -04:00
parent 7df387f7d5
commit a42a86c0d2
6 changed files with 30 additions and 31 deletions

View File

@ -156,7 +156,7 @@ void utils::sfgets(const char *srcname, int srcline, char *s, int size,
errmsg += filename;
errmsg += "'";
if (error) error->one(srcname,srcline,errmsg.c_str());
if (error) error->one(srcname,srcline,errmsg);
if (s) *s = '\0'; // truncate string to empty in case error is NULL
}
return;
@ -185,7 +185,7 @@ void utils::sfread(const char *srcname, int srcline, void *s, size_t size,
errmsg += filename;
errmsg += "'";
if (error) error->one(srcname,srcline,errmsg.c_str());
if (error) error->one(srcname,srcline,errmsg);
}
return;
}
@ -239,9 +239,9 @@ double utils::numeric(const char *file, int line, const char *str,
msg += str;
msg += "' in input script or data file";
if (do_abort)
lmp->error->one(file,line,msg.c_str());
lmp->error->one(file,line,msg);
else
lmp->error->all(file,line,msg.c_str());
lmp->error->all(file,line,msg);
}
return atof(str);
@ -274,9 +274,9 @@ int utils::inumeric(const char *file, int line, const char *str,
msg += str;
msg += "' in input script or data file";
if (do_abort)
lmp->error->one(file,line,msg.c_str());
lmp->error->one(file,line,msg);
else
lmp->error->all(file,line,msg.c_str());
lmp->error->all(file,line,msg);
}
return atoi(str);
@ -309,9 +309,9 @@ bigint utils::bnumeric(const char *file, int line, const char *str,
msg += str;
msg += "' in input script or data file";
if (do_abort)
lmp->error->one(file,line,msg.c_str());
lmp->error->one(file,line,msg);
else
lmp->error->all(file,line,msg.c_str());
lmp->error->all(file,line,msg);
}
return ATOBIGINT(str);
@ -344,9 +344,9 @@ tagint utils::tnumeric(const char *file, int line, const char *str,
msg += str;
msg += "' in input script or data file";
if (do_abort)
lmp->error->one(file,line,msg.c_str());
lmp->error->one(file,line,msg);
else
lmp->error->all(file,line,msg.c_str());
lmp->error->all(file,line,msg);
}
return ATOTAGINT(str);