Deleted Added
full compact
streambuf (241900) streambuf (242939)
1// -*- C++ -*-
2//===------------------------- streambuf ----------------------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
8//

--- 539 unchanged lines hidden (view full) ---

548
549template <class _CharT, class _Traits>
550typename basic_streambuf<_CharT, _Traits>::int_type
551basic_streambuf<_CharT, _Traits>::overflow(int_type)
552{
553 return traits_type::eof();
554}
555
1// -*- C++ -*-
2//===------------------------- streambuf ----------------------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
8//

--- 539 unchanged lines hidden (view full) ---

548
549template <class _CharT, class _Traits>
550typename basic_streambuf<_CharT, _Traits>::int_type
551basic_streambuf<_CharT, _Traits>::overflow(int_type)
552{
553 return traits_type::eof();
554}
555
556extern template class basic_streambuf<char>;
557extern template class basic_streambuf<wchar_t>;
556_LIBCPP_EXTERN_TEMPLATE(class basic_streambuf<char>)
557_LIBCPP_EXTERN_TEMPLATE(class basic_streambuf<wchar_t>)
558
558
559extern template class basic_ios<char>;
560extern template class basic_ios<wchar_t>;
559_LIBCPP_EXTERN_TEMPLATE(class basic_ios<char>)
560_LIBCPP_EXTERN_TEMPLATE(class basic_ios<wchar_t>)
561
562_LIBCPP_END_NAMESPACE_STD
563
564#endif // _LIBCPP_STEAMBUF
561
562_LIBCPP_END_NAMESPACE_STD
563
564#endif // _LIBCPP_STEAMBUF