Change next_dvector(n, buf) to next_dvector(buf, n)
This commit is contained in:
@ -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();
|
||||
|
||||
Reference in New Issue
Block a user