diff options
Diffstat (limited to 'cpp/include/Ice/LoggerUtil.h')
-rw-r--r-- | cpp/include/Ice/LoggerUtil.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/Ice/LoggerUtil.h b/cpp/include/Ice/LoggerUtil.h index 5b22e84ad70..2b1c2c42ec1 100644 --- a/cpp/include/Ice/LoggerUtil.h +++ b/cpp/include/Ice/LoggerUtil.h @@ -33,7 +33,7 @@ private: }; template<typename T> -Warning& +inline Warning& operator<<(Warning& out, const T& val) { out.__str() << val; @@ -60,7 +60,7 @@ private: }; template<typename T> -Error& +inline Error& operator<<(Error& out, const T& val) { out.__str() << val; @@ -88,7 +88,7 @@ private: }; template<typename T> -Trace& +inline Trace& operator<<(Trace& out, const T& val) { out.__str() << val; |