From 584ee1364f25e5c3795f9ff4633a792cba39bfc7 Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Wed, 23 Dec 2015 10:36:03 +0100 Subject: [PATCH] use the proper namespace --- simgear/math/interpolater.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/math/interpolater.cxx b/simgear/math/interpolater.cxx index c594e59c..a76d9f45 100644 --- a/simgear/math/interpolater.cxx +++ b/simgear/math/interpolater.cxx @@ -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; } } -- 2.39.5