1.1 --- a/epoc32/include/stdapis/stlportv5/stl/_null_stream.h Wed Mar 31 12:27:01 2010 +0100
1.2 +++ b/epoc32/include/stdapis/stlportv5/stl/_null_stream.h Wed Mar 31 12:33:34 2010 +0100
1.3 @@ -5,7 +5,7 @@
1.4 * This material is provided "as is", with absolutely no warranty expressed
1.5 * or implied. Any use is at your own risk.
1.6 *
1.7 - * Permission to use or copy this software for any purpose is hereby granted
1.8 + * Permission to use or copy this software for any purpose is hereby granted
1.9 * without fee, provided the above notices are retained on all copies.
1.10 * Permission to modify the code and to distribute modified code is granted,
1.11 * provided the above notices are retained, and a notice that the code was
1.12 @@ -18,19 +18,19 @@
1.13
1.14 _STLP_BEGIN_NAMESPACE
1.15
1.16 -struct __null_stream
1.17 +struct __null_stream
1.18 {
1.19 void flush() { }
1.20 };
1.21
1.22 template <class _Tp>
1.23 -__null_stream& operator <<(__null_stream& __x, const _Tp& )
1.24 +__null_stream& operator <<(__null_stream& __x, const _Tp& )
1.25 {
1.26 return __x;
1.27 }
1.28
1.29 template <class _Tp>
1.30 -__null_stream& operator >>(const _Tp&, __null_stream& __x )
1.31 +__null_stream& operator >>(const _Tp&, __null_stream& __x )
1.32 {
1.33 return __x;
1.34 }