update formatting style to be more consistent

This commit is contained in:
Axel Kohlmeyer
2020-09-21 01:58:27 -04:00
parent 0a11cc5eb9
commit 29a7d598ac
53 changed files with 108 additions and 108 deletions

View File

@ -41,13 +41,13 @@ namespace LAMMPS_NS
char * next_line(int nparams = 0);
void next_dvector(double * list, int n);
ValueTokenizer next_values(int nparams, const std::string & separators = TOKENIZER_DEFAULT_SEPARATORS);
ValueTokenizer next_values(int nparams, const std::string &separators = TOKENIZER_DEFAULT_SEPARATORS);
};
class FileReaderException : public std::exception {
std::string message;
public:
FileReaderException(const std::string & msg) : message(msg) {
FileReaderException(const std::string &msg) : message(msg) {
}
~FileReaderException() throw() {
@ -60,7 +60,7 @@ namespace LAMMPS_NS
class EOFException : public FileReaderException {
public:
EOFException(const std::string & msg) : FileReaderException(msg) {
EOFException(const std::string &msg) : FileReaderException(msg) {
}
};