diff options
author | Bernard Normier <bernard@zeroc.com> | 2004-06-08 02:22:42 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2004-06-08 02:22:42 +0000 |
commit | a60f1f651d60e48cc4f4a8e477c5b7813d24418d (patch) | |
tree | ab6fb426a1cad77c9ba865799e542fda62e8d4b1 /cpp/include/IceUtil/OutputUtil.h | |
parent | Removed substition ".cpp" -> ".cs". This is now done by slice2cs itself. (diff) | |
download | ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.tar.bz2 ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.tar.xz ice-a60f1f651d60e48cc4f4a8e477c5b7813d24418d.zip |
AIX port
Diffstat (limited to 'cpp/include/IceUtil/OutputUtil.h')
-rw-r--r-- | cpp/include/IceUtil/OutputUtil.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/include/IceUtil/OutputUtil.h b/cpp/include/IceUtil/OutputUtil.h index 3f95d2ef657..0d718ec838d 100644 --- a/cpp/include/IceUtil/OutputUtil.h +++ b/cpp/include/IceUtil/OutputUtil.h @@ -119,7 +119,7 @@ private: }; template<typename T> -Output& +inline Output& operator<<(Output& out, const T& val) { std::ostringstream s; @@ -129,7 +129,7 @@ operator<<(Output& out, const T& val) } template<typename T> -Output& +inline Output& operator<<(Output& out, const std::vector<T>& val) { for(typename std::vector<T>::const_iterator p = val.begin(); p != val.end(); ++p) @@ -147,7 +147,7 @@ operator<<(Output& out, const std::vector<T>& val) // template<typename T> -Output& +inline Output& operator<<(Output& out, std::vector<T>& val) { for(typename std::vector<T>::const_iterator p = val.begin(); p != val.end(); ++p) @@ -269,7 +269,7 @@ private: }; template<typename T> -XMLOutput& +inline XMLOutput& operator<<(XMLOutput& out, const T& val) { std::ostringstream s; |