From bc24073c73eb2311907aaf17bcb5c0e906c33b2b Mon Sep 17 00:00:00 2001 From: Frank Gaede <frank.gaede@desy.de> Date: Fri, 11 Dec 2015 09:09:04 +0000 Subject: [PATCH] - put operator<<(os,const STR& s) into namespace --- DDTest/src/STR.h | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/DDTest/src/STR.h b/DDTest/src/STR.h index 0c6188da2..8c93e829b 100644 --- a/DDTest/src/STR.h +++ b/DDTest/src/STR.h @@ -44,11 +44,12 @@ namespace { return this->str() == s2.str() ; } }; -} -inline std::ostream& operator<<(std::ostream& os , const STR& s) { - os << s.str() ; - return os ; -} + + inline std::ostream& operator<<(std::ostream& os , const STR& s) { + os << s.str() ; + return os ; + } +} #endif // STR_H -- GitLab