From: Patrick Palka Date: Fri, 7 Feb 2020 15:08:06 +0000 (-0500) Subject: libstdc++: Remove extraneous && X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a04f635d1e4df9679caf763f744eb41a938468f4;p=gcc.git libstdc++: Remove extraneous && --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4e010016a03..946897dda99 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,7 @@ 2020-02-07 Patrick Palka + * include/bits/ranges_algo.h: Remove extraneous &&. + * include/std/ranges (ranges::__detail::__stream_extractable, ranges::basic_istream_view, ranges::istream_view): Define. * testsuite/std/ranges/istream_view: New test. diff --git a/libstdc++-v3/include/bits/ranges_algo.h b/libstdc++-v3/include/bits/ranges_algo.h index a9b87283f87..927c83c55b7 100644 --- a/libstdc++-v3/include/bits/ranges_algo.h +++ b/libstdc++-v3/include/bits/ranges_algo.h @@ -1250,7 +1250,7 @@ namespace ranges [[no_unique_address]] _Out out; template - requires convertible_to && + requires convertible_to && convertible_to && convertible_to operator binary_transform_result<_IIter1, _IIter2, _OOut>() const &