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

@ -164,6 +164,6 @@ void TextFileReader::next_dvector(double * list, int n) {
* \param separators String with list of separators.
* \return ValueTokenizer object for read in text */
ValueTokenizer TextFileReader::next_values(int nparams, const std::string & separators) {
ValueTokenizer TextFileReader::next_values(int nparams, const std::string &separators) {
return ValueTokenizer(next_line(nparams), separators);
}