diff options
author | Andrey Khalyavin <[email protected]> | 2022-06-09 16:12:17 +0300 |
---|---|---|
committer | Andrey Khalyavin <[email protected]> | 2022-06-09 16:12:17 +0300 |
commit | ec9bd2e3177e1f501e75656d0a0d6e0e511cc7e0 (patch) | |
tree | 6b23a95fecf4c17de0a823d4662e8cdb6039515e /contrib/libs/cxxsupp/libcxx/include/algorithm | |
parent | 513d8035935699ef5f29d1f58750eadd48f5de6d (diff) |
Update libc++ to 24c12bfb (5 Feb 2022).
Notable changes:
* make _LIBCPP_ABI_UNSTABLE set _LIBCPP_ABI_VERSION
* replace include utility with specific includes in __utility folder
* disallow ranges:begin for array of incomplete types
* move fpos to separate header
* delete optional usage of type builtins that were never implemented
* define ranges::views namespace in its own header
* remove base class of the vector
ref:1d141d911ba017f306cca431c3b56c25d495e54e
Diffstat (limited to 'contrib/libs/cxxsupp/libcxx/include/algorithm')
-rw-r--r-- | contrib/libs/cxxsupp/libcxx/include/algorithm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/include/algorithm b/contrib/libs/cxxsupp/libcxx/include/algorithm index 1855ab5e27a..2537e882a1a 100644 --- a/contrib/libs/cxxsupp/libcxx/include/algorithm +++ b/contrib/libs/cxxsupp/libcxx/include/algorithm @@ -662,7 +662,7 @@ template<class InputIterator, class OutputIterator> */ -#include <__bits> // __libcpp_clz +#include <__bits> #include <__config> #include <__debug> #include <cstddef> @@ -672,7 +672,7 @@ template<class InputIterator, class OutputIterator> #include <iterator> #include <memory> #include <type_traits> -#include <utility> // swap_ranges +#include <utility> #include <version> #include <__algorithm/adjacent_find.h> @@ -774,7 +774,7 @@ template<class InputIterator, class OutputIterator> #include <__algorithm/upper_bound.h> #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) -#pragma GCC system_header +# pragma GCC system_header #endif #if defined(_LIBCPP_HAS_PARALLEL_ALGORITHMS) && _LIBCPP_STD_VER >= 17 |