File tree Expand file tree Collapse file tree 5 files changed +16
-16
lines changed
test/std/language.support/support.limits/support.limits.general Expand file tree Collapse file tree 5 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ Status
198
198
---------------------------------------------------------- -----------------
199
199
``__cpp_lib_char8_t `` ``201907L ``
200
200
---------------------------------------------------------- -----------------
201
- ``__cpp_lib_concepts `` ``202002L ``
201
+ ``__cpp_lib_concepts `` ``202207L ``
202
202
---------------------------------------------------------- -----------------
203
203
``__cpp_lib_constexpr_algorithms `` ``201806L ``
204
204
---------------------------------------------------------- -----------------
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ __cpp_lib_chrono 201611L <chrono>
60
60
__cpp_lib_chrono_udls 201304L <chrono>
61
61
__cpp_lib_clamp 201603L <algorithm>
62
62
__cpp_lib_complex_udls 201309L <complex>
63
- __cpp_lib_concepts 202002L <concepts>
63
+ __cpp_lib_concepts 202207L <concepts>
64
64
__cpp_lib_constexpr_algorithms 202306L <algorithm> <utility>
65
65
201806L // C++20
66
66
__cpp_lib_constexpr_bitset 202207L <bitset>
@@ -400,7 +400,7 @@ __cpp_lib_void_t 201411L <type_traits>
400
400
# if _LIBCPP_HAS_CHAR8_T
401
401
# define __cpp_lib_char8_t 201907L
402
402
# endif
403
- # define __cpp_lib_concepts 202002L
403
+ # define __cpp_lib_concepts 202207L
404
404
# define __cpp_lib_constexpr_algorithms 201806L
405
405
# define __cpp_lib_constexpr_complex 201711L
406
406
# define __cpp_lib_constexpr_dynamic_alloc 201907L
Original file line number Diff line number Diff line change 41
41
# ifndef __cpp_lib_concepts
42
42
# error "__cpp_lib_concepts should be defined in c++20"
43
43
# endif
44
- # if __cpp_lib_concepts != 202002L
45
- # error "__cpp_lib_concepts should have the value 202002L in c++20"
44
+ # if __cpp_lib_concepts != 202207L
45
+ # error "__cpp_lib_concepts should have the value 202207L in c++20"
46
46
# endif
47
47
48
48
#elif TEST_STD_VER == 23
49
49
50
50
# ifndef __cpp_lib_concepts
51
51
# error "__cpp_lib_concepts should be defined in c++23"
52
52
# endif
53
- # if __cpp_lib_concepts != 202002L
54
- # error "__cpp_lib_concepts should have the value 202002L in c++23"
53
+ # if __cpp_lib_concepts != 202207L
54
+ # error "__cpp_lib_concepts should have the value 202207L in c++23"
55
55
# endif
56
56
57
57
#elif TEST_STD_VER > 23
58
58
59
59
# ifndef __cpp_lib_concepts
60
60
# error "__cpp_lib_concepts should be defined in c++26"
61
61
# endif
62
- # if __cpp_lib_concepts != 202002L
63
- # error "__cpp_lib_concepts should have the value 202002L in c++26"
62
+ # if __cpp_lib_concepts != 202207L
63
+ # error "__cpp_lib_concepts should have the value 202207L in c++26"
64
64
# endif
65
65
66
66
#endif // TEST_STD_VER > 23
Original file line number Diff line number Diff line change 3267
3267
# ifndef __cpp_lib_concepts
3268
3268
# error "__cpp_lib_concepts should be defined in c++20"
3269
3269
# endif
3270
- # if __cpp_lib_concepts != 202002L
3271
- # error "__cpp_lib_concepts should have the value 202002L in c++20"
3270
+ # if __cpp_lib_concepts != 202207L
3271
+ # error "__cpp_lib_concepts should have the value 202207L in c++20"
3272
3272
# endif
3273
3273
3274
3274
# ifndef __cpp_lib_constexpr_algorithms
4704
4704
# ifndef __cpp_lib_concepts
4705
4705
# error "__cpp_lib_concepts should be defined in c++23"
4706
4706
# endif
4707
- # if __cpp_lib_concepts != 202002L
4708
- # error "__cpp_lib_concepts should have the value 202002L in c++23"
4707
+ # if __cpp_lib_concepts != 202207L
4708
+ # error "__cpp_lib_concepts should have the value 202207L in c++23"
4709
4709
# endif
4710
4710
4711
4711
# ifndef __cpp_lib_constexpr_algorithms
6375
6375
# ifndef __cpp_lib_concepts
6376
6376
# error "__cpp_lib_concepts should be defined in c++26"
6377
6377
# endif
6378
- # if __cpp_lib_concepts != 202002L
6379
- # error "__cpp_lib_concepts should have the value 202002L in c++26"
6378
+ # if __cpp_lib_concepts != 202207L
6379
+ # error "__cpp_lib_concepts should have the value 202207L in c++26"
6380
6380
# endif
6381
6381
6382
6382
# ifndef __cpp_lib_constexpr_algorithms
Original file line number Diff line number Diff line change @@ -320,7 +320,7 @@ def add_version_header(tc):
320
320
},
321
321
{
322
322
"name" : "__cpp_lib_concepts" ,
323
- "values" : {"c++20" : 202002 },
323
+ "values" : {"c++20" : 202207 },
324
324
"headers" : ["concepts" ],
325
325
},
326
326
{
You can’t perform that action at this time.
0 commit comments