1
0
Fork 0

Fix for namespace scope.

This commit is contained in:
James Turner 2013-01-22 18:15:19 +01:00
parent 980105385d
commit 13303f96a1

View file

@ -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);
}