use the proper namespace

This commit is contained in:
Erik Hofman
2015-12-23 10:36:03 +01:00
parent 1e32c24a17
commit 584ee1364f

View File

@@ -67,7 +67,7 @@ SGInterpTable::SGInterpTable( const std::string& file )
while ( in ) {
double ind, dep;
in >> ind >> dep;
in >> skipws;
in >> std::skipws;
_table[ind] = dep;
}
}