diff options
author | Louis Dionne <ldionne.2@gmail.com> | 2022-08-18 14:06:40 -0400 |
---|---|---|
committer | Louis Dionne <ldionne.2@gmail.com> | 2022-08-18 16:59:58 -0400 |
commit | b8cb1dc9ea87faa8e8e9ab7a31710a8c0bb8b084 (patch) | |
tree | a777aebacf10bb4369b0880ad5a50a00ab7b5275 /libcxx/include/__algorithm/iterator_operations.h | |
parent | f5884fd9de6cf2d8ecfb9aa02952f3094c116887 (diff) | |
download | llvm-b8cb1dc9ea87faa8e8e9ab7a31710a8c0bb8b084.tar.gz |
[libc++] Make <ranges> non-experimental
When we ship LLVM 16, <ranges> won't be considered experimental anymore.
We might as well do this sooner rather than later.
Differential Revision: https://reviews.llvm.org/D132151
Diffstat (limited to 'libcxx/include/__algorithm/iterator_operations.h')
-rw-r--r-- | libcxx/include/__algorithm/iterator_operations.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/__algorithm/iterator_operations.h b/libcxx/include/__algorithm/iterator_operations.h index af461878737f..e215d70d53d1 100644 --- a/libcxx/include/__algorithm/iterator_operations.h +++ b/libcxx/include/__algorithm/iterator_operations.h @@ -34,7 +34,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD template <class _AlgPolicy> struct _IterOps; -#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES) +#if _LIBCPP_STD_VER > 17 struct _RangeAlgPolicy {}; template <> |