diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-12-17 11:00:58 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-12-17 11:00:58 -0800 |
commit | 1865466edfe091cae376735359b665479021dca2 (patch) | |
tree | 8699a9a72673526646cd4d878516d32c8b968756 /system/include/libcxx | |
parent | 3c17526474d054acb9aa616d5af95103f040b2d2 (diff) |
support for std::endl and cout << ints
Diffstat (limited to 'system/include/libcxx')
-rw-r--r-- | system/include/libcxx/ostream | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/system/include/libcxx/ostream b/system/include/libcxx/ostream index dd28e686..f7cbb8a2 100644 --- a/system/include/libcxx/ostream +++ b/system/include/libcxx/ostream @@ -1181,6 +1181,7 @@ basic_ostream<_CharT, _Traits>::seekp(off_type __off, ios_base::seekdir __dir) return *this; } +*/ template <class _CharT, class _Traits> inline _LIBCPP_INLINE_VISIBILITY basic_ostream<_CharT, _Traits>& @@ -1209,6 +1210,7 @@ flush(basic_ostream<_CharT, _Traits>& __os) return __os; } +/* #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES template <class _Stream, class _Tp> |