From: James Turner Date: Tue, 22 Jan 2013 17:15:19 +0000 (+0100) Subject: Fix for namespace scope. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=13303f96a1daf6593d2c9f9ff703241a8bc31b14;p=flightgear.git Fix for namespace scope. --- diff --git a/src/Instrumentation/KLN89/kln89_page_cal.hxx b/src/Instrumentation/KLN89/kln89_page_cal.hxx index d77806e96..5abfcdbf3 100644 --- a/src/Instrumentation/KLN89/kln89_page_cal.hxx +++ b/src/Instrumentation/KLN89/kln89_page_cal.hxx @@ -71,7 +71,7 @@ private: }; -inline ostream& operator<< (ostream& out, const ClockTime& t) { +inline std::ostream& operator<< (std::ostream& out, const ClockTime& t) { return(out << t._hr << ':' << t._min); }