mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-04 16:41:43 +00:00
[libc++] Fix issue in std.cppm after introducing views::chunk_by
This should fix CI issues introduced by 065dc485bd where the std.cppm module won't build in C++20 mode because views::chunk_by was added in C++23 but wasn't marked as such in ranges.inc.
This commit is contained in:
parent
cd25a50a8f
commit
98d28e947c
@ -311,12 +311,14 @@ export namespace std {
|
||||
}
|
||||
#endif
|
||||
|
||||
#if _LIBCPP_STD_VER >= 23
|
||||
// [range.chunk.by], chunk by view
|
||||
using std::ranges::chunk_by_view;
|
||||
|
||||
namespace views {
|
||||
using std::ranges::views::chunk_by;
|
||||
}
|
||||
#endif // _LIBCPP_STD_VER >= 23
|
||||
|
||||
#if 0
|
||||
// [range.stride], stride view
|
||||
|
Loading…
x
Reference in New Issue
Block a user