Skip to content

Commit be1854c

Browse files
georgthegreatneyrox
authored andcommitted
Backport PR #161859 to libcxx to allow abseil update
This backports [PR #161859](llvm/llvm-project#161859) from upstream. commit_hash:55593669b4c3a7dd0109530c3cd78abff067c1f7
1 parent 59d7a27 commit be1854c

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

contrib/libs/cxxsupp/libcxx/include/__ranges/lazy_split_view.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ class lazy_split_view : public view_interface<lazy_split_view<_View, _Pattern>>
7575
using _MaybeCurrent = _If<!forward_range<_View>, __non_propagating_cache<iterator_t<_View>>, __empty_cache>;
7676
_LIBCPP_NO_UNIQUE_ADDRESS _MaybeCurrent __current_ = _MaybeCurrent();
7777

78+
private:
7879
template <bool>
7980
struct __outer_iterator;
8081
template <bool>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
diff --git a/include/__ranges/lazy_split_view.h b/include/__ranges/lazy_split_view.h
2+
index db031fe..9dc3ca4 100644
3+
--- a/include/__ranges/lazy_split_view.h
4+
+++ b/include/__ranges/lazy_split_view.h
5+
@@ -75,6 +75,7 @@ class lazy_split_view : public view_interface<lazy_split_view<_View, _Pattern>>
6+
using _MaybeCurrent = _If<!forward_range<_View>, __non_propagating_cache<iterator_t<_View>>, __empty_cache>;
7+
_LIBCPP_NO_UNIQUE_ADDRESS _MaybeCurrent __current_ = _MaybeCurrent();
8+
9+
+private:
10+
template <bool>
11+
struct __outer_iterator;
12+
template <bool>

0 commit comments

Comments
 (0)