Change next_dvector(n, buf) to next_dvector(buf, n)

This commit is contained in:
Richard Berger
2020-06-05 16:40:14 -04:00
parent 8b5469590d
commit 2203e1e9e5
20 changed files with 78 additions and 78 deletions

View File

@ -97,7 +97,7 @@ char *TextFileReader::next_line(int nparams) {
return line;
}
void TextFileReader::next_dvector(int n, double * list) {
void TextFileReader::next_dvector(double * list, int n) {
int i = 0;
while (i < n) {
char *ptr = next_line();