Skip to content

Commit fd69709

Browse files
committed
fixup! WIP: [libc++][ranges] Implement ranges::stride_view.
Regenerate files.
1 parent 782c998 commit fd69709

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

libcxx/test/std/language.support/support.limits/support.limits.general/version.version.compile.pass.cpp

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1616,6 +1616,10 @@
16161616
# error "__cpp_lib_ranges_find_last should not be defined before c++23"
16171617
# endif
16181618

1619+
# ifdef __cpp_lib_ranges_indices
1620+
# error "__cpp_lib_ranges_indices should not be defined before c++26"
1621+
# endif
1622+
16191623
# ifdef __cpp_lib_ranges_iota
16201624
# error "__cpp_lib_ranges_iota should not be defined before c++23"
16211625
# endif
@@ -1791,6 +1795,10 @@
17911795
# error "__cpp_lib_string_resize_and_overwrite should not be defined before c++23"
17921796
# endif
17931797

1798+
# ifdef __cpp_lib_string_subview
1799+
# error "__cpp_lib_string_subview should not be defined before c++26"
1800+
# endif
1801+
17941802
# ifndef __cpp_lib_string_udls
17951803
# error "__cpp_lib_string_udls should be defined in c++14"
17961804
# endif
@@ -2731,6 +2739,10 @@
27312739
# error "__cpp_lib_ranges_find_last should not be defined before c++23"
27322740
# endif
27332741

2742+
# ifdef __cpp_lib_ranges_indices
2743+
# error "__cpp_lib_ranges_indices should not be defined before c++26"
2744+
# endif
2745+
27342746
# ifdef __cpp_lib_ranges_iota
27352747
# error "__cpp_lib_ranges_iota should not be defined before c++23"
27362748
# endif
@@ -2936,6 +2948,10 @@
29362948
# error "__cpp_lib_string_resize_and_overwrite should not be defined before c++23"
29372949
# endif
29382950

2951+
# ifdef __cpp_lib_string_subview
2952+
# error "__cpp_lib_string_subview should not be defined before c++26"
2953+
# endif
2954+
29392955
# ifndef __cpp_lib_string_udls
29402956
# error "__cpp_lib_string_udls should be defined in c++17"
29412957
# endif
@@ -4119,6 +4135,10 @@
41194135
# error "__cpp_lib_ranges_find_last should not be defined before c++23"
41204136
# endif
41214137

4138+
# ifdef __cpp_lib_ranges_indices
4139+
# error "__cpp_lib_ranges_indices should not be defined before c++26"
4140+
# endif
4141+
41224142
# ifdef __cpp_lib_ranges_iota
41234143
# error "__cpp_lib_ranges_iota should not be defined before c++23"
41244144
# endif
@@ -4354,6 +4374,10 @@
43544374
# error "__cpp_lib_string_resize_and_overwrite should not be defined before c++23"
43554375
# endif
43564376

4377+
# ifdef __cpp_lib_string_subview
4378+
# error "__cpp_lib_string_subview should not be defined before c++26"
4379+
# endif
4380+
43574381
# ifndef __cpp_lib_string_udls
43584382
# error "__cpp_lib_string_udls should be defined in c++20"
43594383
# endif
@@ -5702,6 +5726,10 @@
57025726
# error "__cpp_lib_ranges_find_last should have the value 202207L in c++23"
57035727
# endif
57045728

5729+
# ifdef __cpp_lib_ranges_indices
5730+
# error "__cpp_lib_ranges_indices should not be defined before c++26"
5731+
# endif
5732+
57055733
# ifndef __cpp_lib_ranges_iota
57065734
# error "__cpp_lib_ranges_iota should be defined in c++23"
57075735
# endif
@@ -6009,6 +6037,10 @@
60096037
# error "__cpp_lib_string_resize_and_overwrite should have the value 202110L in c++23"
60106038
# endif
60116039

6040+
# ifdef __cpp_lib_string_subview
6041+
# error "__cpp_lib_string_subview should not be defined before c++26"
6042+
# endif
6043+
60126044
# ifndef __cpp_lib_string_udls
60136045
# error "__cpp_lib_string_udls should be defined in c++23"
60146046
# endif
@@ -7621,6 +7653,13 @@
76217653
# error "__cpp_lib_ranges_find_last should have the value 202207L in c++26"
76227654
# endif
76237655

7656+
# ifndef __cpp_lib_ranges_indices
7657+
# error "__cpp_lib_ranges_indices should be defined in c++26"
7658+
# endif
7659+
# if __cpp_lib_ranges_indices != 202506L
7660+
# error "__cpp_lib_ranges_indices should have the value 202506L in c++26"
7661+
# endif
7662+
76247663
# ifndef __cpp_lib_ranges_iota
76257664
# error "__cpp_lib_ranges_iota should be defined in c++26"
76267665
# endif
@@ -7973,6 +8012,13 @@
79738012
# error "__cpp_lib_string_resize_and_overwrite should have the value 202110L in c++26"
79748013
# endif
79758014

8015+
# ifndef __cpp_lib_string_subview
8016+
# error "__cpp_lib_string_subview should be defined in c++26"
8017+
# endif
8018+
# if __cpp_lib_string_subview != 202506L
8019+
# error "__cpp_lib_string_subview should have the value 202506L in c++26"
8020+
# endif
8021+
79768022
# ifndef __cpp_lib_string_udls
79778023
# error "__cpp_lib_string_udls should be defined in c++26"
79788024
# endif

0 commit comments

Comments
 (0)