public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-9123] libstdc++: Implement LWG 3490 change to drop_while_view::begin()
@ 2021-10-12 18:08 Patrick Palka
  0 siblings, 0 replies; only message in thread
From: Patrick Palka @ 2021-10-12 18:08 UTC (permalink / raw)
  To: gcc-cvs, libstdc++-cvs

https://gcc.gnu.org/g:0dd0905e2f59c1e8fc1597355f47afb53630cfc9

commit r11-9123-g0dd0905e2f59c1e8fc1597355f47afb53630cfc9
Author: Patrick Palka <ppalka@redhat.com>
Date:   Fri May 21 00:05:18 2021 -0400

    libstdc++: Implement LWG 3490 change to drop_while_view::begin()
    
    libstdc++-v3/ChangeLog:
    
            PR libstdc++/100606
            * include/std/ranges (drop_while_view::begin): Assert the
            precondition added by LWG 3490.
    
    (cherry picked from commit 11784fe27d879a10dc8a79212c37f50d4f7146f3)

Diff:
---
 libstdc++-v3/include/std/ranges | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libstdc++-v3/include/std/ranges b/libstdc++-v3/include/std/ranges
index 3ef352949df..4e01ef57401 100644
--- a/libstdc++-v3/include/std/ranges
+++ b/libstdc++-v3/include/std/ranges
@@ -2389,6 +2389,7 @@ namespace views::__adaptor
 	if (_M_cached_begin._M_has_value())
 	  return _M_cached_begin._M_get(_M_base);
 
+	__glibcxx_assert(_M_pred.has_value());
 	auto __it = __detail::find_if_not(ranges::begin(_M_base),
 					  ranges::end(_M_base),
 					  std::cref(*_M_pred));


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2021-10-12 18:08 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-12 18:08 [gcc r11-9123] libstdc++: Implement LWG 3490 change to drop_while_view::begin() Patrick Palka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).