PR libstdc++/80675, PR libstdc++/80940
commit35d7e40f8654f789e82dbb0d45398942a22fe488
authorville <ville@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 21 Jun 2017 19:53:26 +0000 (21 19:53 +0000)
committerville <ville@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 21 Jun 2017 19:53:26 +0000 (21 19:53 +0000)
tree682442a25a4dfb8a09356142015098db8fe62801
parentf4678453f192003cc462ad892a26fd446b135095
PR libstdc++/80675, PR libstdc++/80940

* include/std/istream:
(__is_convertible_to_basic_istream_test(basic_istream<_Ch, _Up>*)): New.
(__do_is_convertible_to_basic_istream_impl): Likewise.
(__is_convertible_to_basic_istream_impl): Likewise.
(__is_convertible_to_basic_istream): Use the new base.
(__rvalue_istream_type): New.
(operator>>(_Istream&&, _Tp&&)): Use the new helper alias
for the SFINAE check, convert to the helper alias type before
doing the actual extraction.
* include/std/ostream:
(__is_convertible_to_basic_ostream_test(basic_ostream<_Ch, _Up>*)): New.
(__do_is_convertible_to_basic_ostream_impl): Likewise.
(__is_convertible_to_basic_ostream_impl): Likewise.
(__is_convertible_to_basic_ostream): Use the new base.
(__rvalue_ostream_type): New.
(operator<<(_Ostream&&, const _Tp&)): Use the new helper alias
for the SFINAE check, convert to the helper alias type before
doing the actual insertion.
* testsuite/27_io/rvalue_streams-2.cc: Add new tests.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@249468 138bc75d-0d04-0410-961f-82ee72b054a4
libstdc++-v3/ChangeLog
libstdc++-v3/include/std/istream
libstdc++-v3/include/std/ostream
libstdc++-v3/testsuite/27_io/rvalue_streams-2.cc