COMP: clang caught ambiguous constructions from tmp.

This commit is contained in:
graham
2011-06-06 14:35:07 +01:00
parent 34080f13e3
commit 8961e44dc5
8 changed files with 43 additions and 31 deletions

View File

@ -76,7 +76,7 @@ void Foam::csvSetWriter<Type>::write
columns[i] = valueSets[i];
}
writeTable(points, columns, os);
this->writeTable(points, columns, os);
}
@ -110,7 +110,7 @@ void Foam::csvSetWriter<Type>::write
columns[i] = &valueSets[i][trackI];
}
writeTable(points[trackI], columns, os);
this->writeTable(points[trackI], columns, os);
os << nl << nl;
}
}