Re: [PATCH 4/3] Add [range.istream]

2020-02-07 Thread Jonathan Wakely
On 07/02/20 09:46 -0500, Patrick Palka wrote: Fixed and committed with that change. Thanks for the review! I've just tested and pushed this fix. commit 572992c8920d5339a3ac28d442c436d6daa0bfae Author: Jonathan Wakely Date: Fri Feb 7 16:06:43 2020 + libstdc++ Fix missing return in

Re: [PATCH 4/3] Add [range.istream]

2020-02-07 Thread Patrick Palka
On Fri, 7 Feb 2020, Jonathan Wakely wrote: > On 06/02/20 19:52 -0500, Patrick Palka wrote: > > This patch adds ranges::basic_istream_view and ranges::istream_view. This > > seems > > to be the last missing part of the ranges header. > > > > libstdc++-v3/ChangeLog: > > > > * include/std/rang

Re: [PATCH 4/3] Add [range.istream]

2020-02-07 Thread Jonathan Wakely
On 06/02/20 19:52 -0500, Patrick Palka wrote: This patch adds ranges::basic_istream_view and ranges::istream_view. This seems to be the last missing part of the ranges header. libstdc++-v3/ChangeLog: * include/std/ranges (ranges::__detail::__stream_extractable, ranges::basic_is

[PATCH 4/3] Add [range.istream]

2020-02-06 Thread Patrick Palka
This patch adds ranges::basic_istream_view and ranges::istream_view. This seems to be the last missing part of the ranges header. libstdc++-v3/ChangeLog: * include/std/ranges (ranges::__detail::__stream_extractable, ranges::basic_istream_view, ranges::istream_view): Define.