]> git.mxchange.org Git - simgear.git/commitdiff
use the proper namespace
authorErik Hofman <erik@ehofman.com>
Wed, 23 Dec 2015 09:36:03 +0000 (10:36 +0100)
committerErik Hofman <erik@ehofman.com>
Wed, 23 Dec 2015 09:36:03 +0000 (10:36 +0100)
simgear/math/interpolater.cxx

index c594e59c4073840d767c9e72438fa8a0a4051797..a76d9f455b3d2ca4104c6477ce607a1bfb9e3641 100644 (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;
     }
 }