From: timoore Date: Mon, 2 Jun 2008 21:09:10 +0000 (+0000) Subject: iostream cleanup wip X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fe1dd9474e5e921d617de5ce2dce41b4db9a6aaa;p=flightgear.git iostream cleanup wip --- diff --git a/src/Main/logger.hxx b/src/Main/logger.hxx index 273ccd6b0..d9ffb73c3 100644 --- a/src/Main/logger.hxx +++ b/src/Main/logger.hxx @@ -14,7 +14,7 @@ # include #endif -#include +#include #include #include @@ -52,14 +52,14 @@ private: struct Log { Log (); virtual ~Log (); - vector nodes; - ostream * output; + std::vector nodes; + std::ostream * output; long interval_ms; double last_time_ms; char delimiter; }; - vector _logs; + std::vector _logs; };