[libcxx-commits] [libcxx] [llvm] Revert "[libc++] LWG3870: Remove `voidify` (#110355)" (PR #110587)
Michael Buch via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Sep 30 15:23:32 PDT 2024
https://github.com/Michael137 created https://github.com/llvm/llvm-project/pull/110587
This reverts commit 78f9a8b82d772ff04a12ef95f2c9d31ee8f3e409.
This caused the LLDB test `TestDataFormatterGenericOptional.py` to fail with:
```
FAIL: test_with_run_command_libcpp_dwarf (TestDataFormatterGenericOptional.GenericOptionalDataFormatterTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/packages/Python/lldbsuite/test/lldbtest.py", line 1769, in test_method
return attrvalue(self)
File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/packages/Python/lldbsuite/test/decorators.py", line 148, in wrapper
return func(*args, **kwargs)
File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/packages/Python/lldbsuite/test/decorators.py", line 148, in wrapper
return func(*args, **kwargs)
File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/optional/TestDataFormatterGenericOptional.py", line 103, in test_with_run_command_libcpp
self.do_test_with_run_command(USE_LIBCPP)
File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-stl/generic/optional/TestDataFormatterGenericOptional.py", line 59, in do_test_with_run_command
self.expect(
File "/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/llvm-project/lldb/packages/Python/lldbsuite/test/lldbtest.py", line 2475, in expect
self.fail(log_msg)
AssertionError: Ran command:
"frame var numbers"
Got output:
(optional_int_vect) numbers = Has Value=true {
Value = {
__begin_ = 0x0000600002be8000
__end_ = 0x0000600002be8010
__cap_ = 0x0000600002be8010
__padding1_781_ = (__padding_ = "\U00000001\0\xf7\0ה\xd2\xf0*\0\0\0*\0\0\0\U00000001\xb4Zo*\0\0\0*\0\0\0\U00000001\0\0\0\0\U0000001d\xc7\0\0\0\0\0\xbc[\x85\U00000001\0\0\0\0\U00000001\0\0\0\U00000002\0\0\0\U00000003\0\0\0\U00000004")
__alloc_ = {}
__padding2_781_ = (__padding_ = "\U00000001\0\xf7\0ה\xd2\xf0*\0\0\0*\0\0\0\U00000001\xb4Zo*\0\0\0*\0\0\0\U00000001\0\0\0\0\U0000001d\xc7\0\0\0\0\0\xbc[\x85\U00000001\0\0\0\0\U00000001\0\0\0\U00000002\0\0\0\U00000003\0\0\0\U00000004")
}
}
Expecting sub string: "(optional_int_vect) numbers = Has Value=true {" (was found)
Expecting sub string: "Value = size=4 {" (was not found)
Config=arm64-/Users/ec2-user/jenkins/workspace/llvm.org/as-lldb-cmake/lldb-build/bin/clang
----------------------------------------------------------------------
Ran 6 tests in 3.259s
FAILED (failures=2, skipped=4)
```
Will need a bit more time to look into a solution
>From dc240757ec89633c04c7c2487383ed83411ad5da Mon Sep 17 00:00:00 2001
From: Michael Buch <michaelbuch12 at gmail.com>
Date: Mon, 30 Sep 2024 23:20:05 +0100
Subject: [PATCH] Revert "[libc++] LWG3870: Remove `voidify` (#110355)"
This reverts commit 78f9a8b82d772ff04a12ef95f2c9d31ee8f3e409.
---
libcxx/docs/Status/Cxx23Issues.csv | 2 +-
libcxx/include/CMakeLists.txt | 1 +
libcxx/include/__memory/construct_at.h | 5 +-
libcxx/include/__memory/shared_ptr.h | 14 +-
.../__memory/uninitialized_algorithms.h | 21 +-
libcxx/include/__memory/voidify.h | 30 +
libcxx/include/module.modulemap | 1467 +++++++++++++++++
libcxx/include/optional | 6 +-
.../construct_at.pass.cpp | 15 +
.../ranges_construct_at.pass.cpp | 10 +
...s_uninitialized_default_construct.pass.cpp | 25 +
...uninitialized_default_construct_n.pass.cpp | 12 +
...ges_uninitialized_value_construct.pass.cpp | 25 +
...s_uninitialized_value_construct_n.pass.cpp | 12 +
.../ranges_uninitialized_copy.pass.cpp | 33 +
.../ranges_uninitialized_copy_n.pass.cpp | 16 +
.../ranges_uninitialized_fill_n.pass.cpp | 14 +
.../ranges_uninitialized_fill.pass.cpp | 29 +
.../ranges_uninitialized_move.pass.cpp | 33 +
.../ranges_uninitialized_move_n.pass.cpp | 16 +
.../gn/secondary/libcxx/include/BUILD.gn | 1 +
21 files changed, 1763 insertions(+), 24 deletions(-)
create mode 100644 libcxx/include/__memory/voidify.h
diff --git a/libcxx/docs/Status/Cxx23Issues.csv b/libcxx/docs/Status/Cxx23Issues.csv
index 63e4176ecba1d7..1c8bb057b09660 100644
--- a/libcxx/docs/Status/Cxx23Issues.csv
+++ b/libcxx/docs/Status/Cxx23Issues.csv
@@ -296,7 +296,7 @@
"`LWG3862 <https://wg21.link/LWG3862>`__","``basic_const_iterator``'s ``common_type`` specialization is underconstrained","2023-02 (Issaquah)","","",""
"`LWG3865 <https://wg21.link/LWG3865>`__","Sorting a range of ``pairs``","2023-02 (Issaquah)","|Complete|","17.0",""
"`LWG3869 <https://wg21.link/LWG3869>`__","Deprecate ``std::errc`` constants related to UNIX STREAMS","2023-02 (Issaquah)","|Complete|","19.0",""
-"`LWG3870 <https://wg21.link/LWG3870>`__","Remove ``voidify``","2023-02 (Issaquah)","|Complete|","20.0",""
+"`LWG3870 <https://wg21.link/LWG3870>`__","Remove ``voidify``","2023-02 (Issaquah)","","",""
"`LWG3871 <https://wg21.link/LWG3871>`__","Adjust note about ``terminate``","2023-02 (Issaquah)","","",""
"`LWG3872 <https://wg21.link/LWG3872>`__","``basic_const_iterator`` should have custom ``iter_move``","2023-02 (Issaquah)","","",""
"`LWG3875 <https://wg21.link/LWG3875>`__","``std::ranges::repeat_view<T, IntegerClass>::iterator`` may be ill-formed","2023-02 (Issaquah)","|Complete|","17.0",""
diff --git a/libcxx/include/CMakeLists.txt b/libcxx/include/CMakeLists.txt
index 9bd1b41b8bfac4..8a63280053340f 100644
--- a/libcxx/include/CMakeLists.txt
+++ b/libcxx/include/CMakeLists.txt
@@ -560,6 +560,7 @@ set(files
__memory/unique_temporary_buffer.h
__memory/uses_allocator.h
__memory/uses_allocator_construction.h
+ __memory/voidify.h
__memory_resource/memory_resource.h
__memory_resource/monotonic_buffer_resource.h
__memory_resource/polymorphic_allocator.h
diff --git a/libcxx/include/__memory/construct_at.h b/libcxx/include/__memory/construct_at.h
index d8c97467f54b9f..eb021324800644 100644
--- a/libcxx/include/__memory/construct_at.h
+++ b/libcxx/include/__memory/construct_at.h
@@ -14,6 +14,7 @@
#include <__config>
#include <__iterator/access.h>
#include <__memory/addressof.h>
+#include <__memory/voidify.h>
#include <__type_traits/enable_if.h>
#include <__type_traits/is_array.h>
#include <__utility/declval.h>
@@ -37,7 +38,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
template <class _Tp, class... _Args, class = decltype(::new(std::declval<void*>()) _Tp(std::declval<_Args>()...))>
_LIBCPP_HIDE_FROM_ABI constexpr _Tp* construct_at(_Tp* __location, _Args&&... __args) {
_LIBCPP_ASSERT_NON_NULL(__location != nullptr, "null pointer given to construct_at");
- return ::new (static_cast<void*>(__location)) _Tp(std::forward<_Args>(__args)...);
+ return ::new (std::__voidify(*__location)) _Tp(std::forward<_Args>(__args)...);
}
#endif
@@ -48,7 +49,7 @@ _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp* __construct_at(_Tp* __l
return std::construct_at(__location, std::forward<_Args>(__args)...);
#else
return _LIBCPP_ASSERT_NON_NULL(__location != nullptr, "null pointer given to construct_at"),
- ::new (static_cast<void*>(__location)) _Tp(std::forward<_Args>(__args)...);
+ ::new (std::__voidify(*__location)) _Tp(std::forward<_Args>(__args)...);
#endif
}
diff --git a/libcxx/include/__memory/shared_ptr.h b/libcxx/include/__memory/shared_ptr.h
index 20c1b69f45ae66..70964e6122d5a6 100644
--- a/libcxx/include/__memory/shared_ptr.h
+++ b/libcxx/include/__memory/shared_ptr.h
@@ -248,35 +248,33 @@ struct __for_overwrite_tag {};
template <class _Tp, class _Alloc>
struct __shared_ptr_emplace : __shared_weak_count {
- using __value_type = __remove_cv_t<_Tp>;
-
template <class... _Args,
class _Allocator = _Alloc,
__enable_if_t<is_same<typename _Allocator::value_type, __for_overwrite_tag>::value, int> = 0>
_LIBCPP_HIDE_FROM_ABI explicit __shared_ptr_emplace(_Alloc __a, _Args&&...) : __storage_(std::move(__a)) {
static_assert(
sizeof...(_Args) == 0, "No argument should be provided to the control block when using _for_overwrite");
- ::new (static_cast<void*>(__get_elem())) __value_type;
+ ::new ((void*)__get_elem()) _Tp;
}
template <class... _Args,
class _Allocator = _Alloc,
__enable_if_t<!is_same<typename _Allocator::value_type, __for_overwrite_tag>::value, int> = 0>
_LIBCPP_HIDE_FROM_ABI explicit __shared_ptr_emplace(_Alloc __a, _Args&&... __args) : __storage_(std::move(__a)) {
- using _TpAlloc = typename __allocator_traits_rebind<_Alloc, __value_type>::type;
+ using _TpAlloc = typename __allocator_traits_rebind<_Alloc, __remove_cv_t<_Tp> >::type;
_TpAlloc __tmp(*__get_alloc());
allocator_traits<_TpAlloc>::construct(__tmp, __get_elem(), std::forward<_Args>(__args)...);
}
_LIBCPP_HIDE_FROM_ABI _Alloc* __get_alloc() _NOEXCEPT { return __storage_.__get_alloc(); }
- _LIBCPP_HIDE_FROM_ABI __value_type* __get_elem() _NOEXCEPT { return __storage_.__get_elem(); }
+ _LIBCPP_HIDE_FROM_ABI _Tp* __get_elem() _NOEXCEPT { return __storage_.__get_elem(); }
private:
template <class _Allocator = _Alloc,
__enable_if_t<is_same<typename _Allocator::value_type, __for_overwrite_tag>::value, int> = 0>
_LIBCPP_HIDE_FROM_ABI void __on_zero_shared_impl() _NOEXCEPT {
- __get_elem()->~__value_type();
+ __get_elem()->~_Tp();
}
template <class _Allocator = _Alloc,
@@ -302,7 +300,7 @@ struct __shared_ptr_emplace : __shared_weak_count {
// through `std::allocate_shared` and `std::make_shared`.
struct _Storage {
struct _Data {
- _LIBCPP_COMPRESSED_PAIR(_Alloc, __alloc_, __value_type, __elem_);
+ _LIBCPP_COMPRESSED_PAIR(_Alloc, __alloc_, _Tp, __elem_);
};
_ALIGNAS_TYPE(_Data) char __buffer_[sizeof(_Data)];
@@ -314,7 +312,7 @@ struct __shared_ptr_emplace : __shared_weak_count {
return std::addressof(reinterpret_cast<_Data*>(__buffer_)->__alloc_);
}
- _LIBCPP_HIDE_FROM_ABI _LIBCPP_NO_CFI __value_type* __get_elem() _NOEXCEPT {
+ _LIBCPP_HIDE_FROM_ABI _LIBCPP_NO_CFI _Tp* __get_elem() _NOEXCEPT {
return std::addressof(reinterpret_cast<_Data*>(__buffer_)->__elem_);
}
};
diff --git a/libcxx/include/__memory/uninitialized_algorithms.h b/libcxx/include/__memory/uninitialized_algorithms.h
index dd72f3c10cf15a..8ff87e28b3bb51 100644
--- a/libcxx/include/__memory/uninitialized_algorithms.h
+++ b/libcxx/include/__memory/uninitialized_algorithms.h
@@ -21,6 +21,7 @@
#include <__memory/allocator_traits.h>
#include <__memory/construct_at.h>
#include <__memory/pointer_traits.h>
+#include <__memory/voidify.h>
#include <__type_traits/enable_if.h>
#include <__type_traits/extent.h>
#include <__type_traits/is_array.h>
@@ -63,7 +64,7 @@ inline _LIBCPP_HIDE_FROM_ABI pair<_InputIterator, _ForwardIterator> __uninitiali
try {
#endif
for (; __ifirst != __ilast && !__stop_copying(__idx); ++__ifirst, (void)++__idx)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType(*__ifirst);
+ ::new (std::__voidify(*__idx)) _ValueType(*__ifirst);
#ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__ofirst, __idx);
@@ -93,7 +94,7 @@ __uninitialized_copy_n(_InputIterator __ifirst, _Size __n, _ForwardIterator __of
try {
#endif
for (; __n > 0 && !__stop_copying(__idx); ++__ifirst, (void)++__idx, (void)--__n)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType(*__ifirst);
+ ::new (std::__voidify(*__idx)) _ValueType(*__ifirst);
#ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__ofirst, __idx);
@@ -123,7 +124,7 @@ __uninitialized_fill(_ForwardIterator __first, _Sentinel __last, const _Tp& __x)
try {
#endif
for (; __idx != __last; ++__idx)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType(__x);
+ ::new (std::__voidify(*__idx)) _ValueType(__x);
#ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__first, __idx);
@@ -151,7 +152,7 @@ __uninitialized_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x) {
try {
#endif
for (; __n > 0; ++__idx, (void)--__n)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType(__x);
+ ::new (std::__voidify(*__idx)) _ValueType(__x);
#ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__first, __idx);
@@ -181,7 +182,7 @@ __uninitialized_default_construct(_ForwardIterator __first, _Sentinel __last) {
try {
# endif
for (; __idx != __last; ++__idx)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType;
+ ::new (std::__voidify(*__idx)) _ValueType;
# ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__first, __idx);
@@ -207,7 +208,7 @@ inline _LIBCPP_HIDE_FROM_ABI _ForwardIterator __uninitialized_default_construct_
try {
# endif
for (; __n > 0; ++__idx, (void)--__n)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType;
+ ::new (std::__voidify(*__idx)) _ValueType;
# ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__first, __idx);
@@ -234,7 +235,7 @@ __uninitialized_value_construct(_ForwardIterator __first, _Sentinel __last) {
try {
# endif
for (; __idx != __last; ++__idx)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType();
+ ::new (std::__voidify(*__idx)) _ValueType();
# ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__first, __idx);
@@ -260,7 +261,7 @@ inline _LIBCPP_HIDE_FROM_ABI _ForwardIterator __uninitialized_value_construct_n(
try {
# endif
for (; __n > 0; ++__idx, (void)--__n)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType();
+ ::new (std::__voidify(*__idx)) _ValueType();
# ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__first, __idx);
@@ -296,7 +297,7 @@ inline _LIBCPP_HIDE_FROM_ABI pair<_InputIterator, _ForwardIterator> __uninitiali
try {
# endif
for (; __ifirst != __ilast && !__stop_moving(__idx); ++__idx, (void)++__ifirst) {
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType(__iter_move(__ifirst));
+ ::new (std::__voidify(*__idx)) _ValueType(__iter_move(__ifirst));
}
# ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
@@ -334,7 +335,7 @@ inline _LIBCPP_HIDE_FROM_ABI pair<_InputIterator, _ForwardIterator> __uninitiali
try {
# endif
for (; __n > 0 && !__stop_moving(__idx); ++__idx, (void)++__ifirst, --__n)
- ::new (static_cast<void*>(std::addressof(*__idx))) _ValueType(__iter_move(__ifirst));
+ ::new (std::__voidify(*__idx)) _ValueType(__iter_move(__ifirst));
# ifndef _LIBCPP_HAS_NO_EXCEPTIONS
} catch (...) {
std::__destroy(__ofirst, __idx);
diff --git a/libcxx/include/__memory/voidify.h b/libcxx/include/__memory/voidify.h
new file mode 100644
index 00000000000000..dbd083bd8c1e9a
--- /dev/null
+++ b/libcxx/include/__memory/voidify.h
@@ -0,0 +1,30 @@
+// -*- C++ -*-
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef _LIBCPP___MEMORY_VOIDIFY_H
+#define _LIBCPP___MEMORY_VOIDIFY_H
+
+#include <__config>
+#include <__memory/addressof.h>
+
+#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
+# pragma GCC system_header
+#endif
+
+_LIBCPP_BEGIN_NAMESPACE_STD
+
+template <typename _Tp>
+_LIBCPP_ALWAYS_INLINE _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void* __voidify(_Tp& __from) {
+ // Cast away cv-qualifiers to allow modifying elements of a range through const iterators.
+ return const_cast<void*>(static_cast<const volatile void*>(std::addressof(__from)));
+}
+
+_LIBCPP_END_NAMESPACE_STD
+
+#endif // _LIBCPP___MEMORY_VOIDIFY_H
diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap
index dee9b0b88b7948..71218bdf3b2b14 100644
--- a/libcxx/include/module.modulemap
+++ b/libcxx/include/module.modulemap
@@ -2237,3 +2237,1470 @@ module std_private_mbstate_t [system] {
header "__mbstate_t.h"
export *
}
+module std_private_node_handle [system] {
+ header "__node_handle"
+ export *
+}
+module std_private_split_buffer [system] {
+ header "__split_buffer"
+ export *
+}
+module std_private_std_mbstate_t [system] {
+ header "__std_mbstate_t.h"
+ export *
+}
+module std_private_tree [system] {
+ header "__tree"
+ export *
+}
+module std_private_undef_macros [system] {
+ textual header "__undef_macros"
+ export *
+}
+module std_private_verbose_abort [system] {
+ header "__verbose_abort"
+ export *
+}
+
+module std_private_algorithm_adjacent_find [system] { header "__algorithm/adjacent_find.h" }
+module std_private_algorithm_all_of [system] { header "__algorithm/all_of.h" }
+module std_private_algorithm_any_of [system] { header "__algorithm/any_of.h" }
+module std_private_algorithm_binary_search [system] { header "__algorithm/binary_search.h" }
+module std_private_algorithm_clamp [system] { header "__algorithm/clamp.h" }
+module std_private_algorithm_comp [system] { header "__algorithm/comp.h" }
+module std_private_algorithm_comp_ref_type [system] { header "__algorithm/comp_ref_type.h" }
+module std_private_algorithm_copy [system] {
+ header "__algorithm/copy.h"
+ export std_private_algorithm_copy_move_common
+}
+module std_private_algorithm_copy_backward [system] { header "__algorithm/copy_backward.h" }
+module std_private_algorithm_copy_if [system] { header "__algorithm/copy_if.h" }
+module std_private_algorithm_copy_move_common [system] {
+ header "__algorithm/copy_move_common.h"
+ export std_private_type_traits_is_trivially_copyable
+}
+module std_private_algorithm_copy_n [system] { header "__algorithm/copy_n.h" }
+module std_private_algorithm_count [system] { header "__algorithm/count.h" }
+module std_private_algorithm_count_if [system] { header "__algorithm/count_if.h" }
+module std_private_algorithm_equal [system] { header "__algorithm/equal.h" }
+module std_private_algorithm_equal_range [system] { header "__algorithm/equal_range.h" }
+module std_private_algorithm_fill [system] { header "__algorithm/fill.h" }
+module std_private_algorithm_fill_n [system] { header "__algorithm/fill_n.h" }
+module std_private_algorithm_find [system] {
+ header "__algorithm/find.h"
+ export std_private_algorithm_unwrap_iter
+}
+module std_private_algorithm_find_end [system] { header "__algorithm/find_end.h" }
+module std_private_algorithm_find_first_of [system] { header "__algorithm/find_first_of.h" }
+module std_private_algorithm_find_if [system] { header "__algorithm/find_if.h" }
+module std_private_algorithm_find_if_not [system] { header "__algorithm/find_if_not.h" }
+module std_private_algorithm_find_segment_if [system] { header "__algorithm/find_segment_if.h" }
+module std_private_algorithm_for_each [system] { header "__algorithm/for_each.h" }
+module std_private_algorithm_for_each_n [system] { header "__algorithm/for_each_n.h" }
+module std_private_algorithm_for_each_segment [system] { header "__algorithm/for_each_segment.h" }
+module std_private_algorithm_generate [system] { header "__algorithm/generate.h" }
+module std_private_algorithm_generate_n [system] { header "__algorithm/generate_n.h" }
+module std_private_algorithm_half_positive [system] { header "__algorithm/half_positive.h" }
+module std_private_algorithm_in_found_result [system] { header "__algorithm/in_found_result.h" }
+module std_private_algorithm_in_fun_result [system] { header "__algorithm/in_fun_result.h" }
+module std_private_algorithm_in_in_out_result [system] { header "__algorithm/in_in_out_result.h" }
+module std_private_algorithm_in_in_result [system] { header "__algorithm/in_in_result.h" }
+module std_private_algorithm_in_out_out_result [system] { header "__algorithm/in_out_out_result.h" }
+module std_private_algorithm_in_out_result [system] { header "__algorithm/in_out_result.h" }
+module std_private_algorithm_includes [system] { header "__algorithm/includes.h" }
+module std_private_algorithm_inplace_merge [system] { header "__algorithm/inplace_merge.h" }
+module std_private_algorithm_is_heap [system] { header "__algorithm/is_heap.h" }
+module std_private_algorithm_is_heap_until [system] { header "__algorithm/is_heap_until.h" }
+module std_private_algorithm_is_partitioned [system] { header "__algorithm/is_partitioned.h" }
+module std_private_algorithm_is_permutation [system] { header "__algorithm/is_permutation.h" }
+module std_private_algorithm_is_sorted [system] { header "__algorithm/is_sorted.h" }
+module std_private_algorithm_is_sorted_until [system] { header "__algorithm/is_sorted_until.h" }
+module std_private_algorithm_iter_swap [system] { header "__algorithm/iter_swap.h" }
+module std_private_algorithm_iterator_operations [system] {
+ header "__algorithm/iterator_operations.h"
+ export *
+}
+module std_private_algorithm_lexicographical_compare [system] { header "__algorithm/lexicographical_compare.h" }
+module std_private_algorithm_lexicographical_compare_three_way [system] { header "__algorithm/lexicographical_compare_three_way.h" }
+module std_private_algorithm_lower_bound [system] { header "__algorithm/lower_bound.h" }
+module std_private_algorithm_make_heap [system] { header "__algorithm/make_heap.h" }
+module std_private_algorithm_make_projected [system] { header "__algorithm/make_projected.h" }
+module std_private_algorithm_max [system] { header "__algorithm/max.h" }
+module std_private_algorithm_max_element [system] { header "__algorithm/max_element.h" }
+module std_private_algorithm_merge [system] { header "__algorithm/merge.h" }
+module std_private_algorithm_min [system] { header "__algorithm/min.h" }
+module std_private_algorithm_min_element [system] { header "__algorithm/min_element.h" }
+module std_private_algorithm_min_max_result [system] { header "__algorithm/min_max_result.h" }
+module std_private_algorithm_minmax [system] {
+ header "__algorithm/minmax.h"
+ export *
+}
+module std_private_algorithm_minmax_element [system] { header "__algorithm/minmax_element.h" }
+module std_private_algorithm_mismatch [system] {
+ header "__algorithm/mismatch.h"
+ export std_private_algorithm_simd_utils
+ export std_private_iterator_aliasing_iterator
+}
+module std_private_algorithm_move [system] { header "__algorithm/move.h" }
+module std_private_algorithm_move_backward [system] { header "__algorithm/move_backward.h" }
+module std_private_algorithm_next_permutation [system] { header "__algorithm/next_permutation.h" }
+module std_private_algorithm_none_of [system] { header "__algorithm/none_of.h" }
+module std_private_algorithm_nth_element [system] { header "__algorithm/nth_element.h" }
+module std_private_algorithm_partial_sort [system] { header "__algorithm/partial_sort.h" }
+module std_private_algorithm_partial_sort_copy [system] { header "__algorithm/partial_sort_copy.h" }
+module std_private_algorithm_partition [system] { header "__algorithm/partition.h" }
+module std_private_algorithm_partition_copy [system] { header "__algorithm/partition_copy.h" }
+module std_private_algorithm_partition_point [system] { header "__algorithm/partition_point.h" }
+module std_private_algorithm_pop_heap [system] { header "__algorithm/pop_heap.h" }
+module std_private_algorithm_prev_permutation [system] { header "__algorithm/prev_permutation.h" }
+module std_private_algorithm_pstl [system] {
+ header "__algorithm/pstl.h"
+ export *
+}
+module std_private_algorithm_push_heap [system] { header "__algorithm/push_heap.h" }
+module std_private_algorithm_ranges_adjacent_find [system] { header "__algorithm/ranges_adjacent_find.h" }
+module std_private_algorithm_ranges_all_of [system] { header "__algorithm/ranges_all_of.h" }
+module std_private_algorithm_ranges_any_of [system] { header "__algorithm/ranges_any_of.h" }
+module std_private_algorithm_ranges_binary_search [system] {
+ header "__algorithm/ranges_binary_search.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_clamp [system] {
+ header "__algorithm/ranges_clamp.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_contains [system] { header "__algorithm/ranges_contains.h" }
+module std_private_algorithm_ranges_contains_subrange [system] { header "__algorithm/ranges_contains_subrange.h" }
+module std_private_algorithm_ranges_copy [system] {
+ header "__algorithm/ranges_copy.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_copy_backward [system] {
+ header "__algorithm/ranges_copy_backward.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_copy_if [system] {
+ header "__algorithm/ranges_copy_if.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_copy_n [system] {
+ header "__algorithm/ranges_copy_n.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_count [system] { header "__algorithm/ranges_count.h" }
+module std_private_algorithm_ranges_count_if [system] { header "__algorithm/ranges_count_if.h" }
+module std_private_algorithm_ranges_ends_with [system] { header "__algorithm/ranges_ends_with.h" }
+module std_private_algorithm_ranges_equal [system] { header "__algorithm/ranges_equal.h" }
+module std_private_algorithm_ranges_equal_range [system] {
+ header "__algorithm/ranges_equal_range.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_fill [system] { header "__algorithm/ranges_fill.h" }
+module std_private_algorithm_ranges_fill_n [system] { header "__algorithm/ranges_fill_n.h" }
+module std_private_algorithm_ranges_find [system] { header "__algorithm/ranges_find.h" }
+module std_private_algorithm_ranges_find_end [system] { header "__algorithm/ranges_find_end.h" }
+module std_private_algorithm_ranges_find_first_of [system] { header "__algorithm/ranges_find_first_of.h" }
+module std_private_algorithm_ranges_find_if [system] { header "__algorithm/ranges_find_if.h" }
+module std_private_algorithm_ranges_find_if_not [system] { header "__algorithm/ranges_find_if_not.h" }
+module std_private_algorithm_ranges_find_last [system] { header "__algorithm/ranges_find_last.h" }
+module std_private_algorithm_ranges_fold [system] { header "__algorithm/ranges_fold.h" }
+module std_private_algorithm_ranges_for_each [system] {
+ header "__algorithm/ranges_for_each.h"
+ export std_private_algorithm_in_fun_result
+}
+module std_private_algorithm_ranges_for_each_n [system] {
+ header "__algorithm/ranges_for_each_n.h"
+ export std_private_algorithm_in_fun_result
+}
+module std_private_algorithm_ranges_generate [system] { header "__algorithm/ranges_generate.h" }
+module std_private_algorithm_ranges_generate_n [system] { header "__algorithm/ranges_generate_n.h" }
+module std_private_algorithm_ranges_includes [system] {
+ header "__algorithm/ranges_includes.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_inplace_merge [system] {
+ header "__algorithm/ranges_inplace_merge.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_is_heap [system] {
+ header "__algorithm/ranges_is_heap.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_is_heap_until [system] {
+ header "__algorithm/ranges_is_heap_until.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_is_partitioned [system] { header "__algorithm/ranges_is_partitioned.h" }
+module std_private_algorithm_ranges_is_permutation [system] { header "__algorithm/ranges_is_permutation.h" }
+module std_private_algorithm_ranges_is_sorted [system] {
+ header "__algorithm/ranges_is_sorted.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_is_sorted_until [system] {
+ header "__algorithm/ranges_is_sorted_until.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_iterator_concept [system] { header "__algorithm/ranges_iterator_concept.h" }
+module std_private_algorithm_ranges_lexicographical_compare [system] {
+ header "__algorithm/ranges_lexicographical_compare.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_lower_bound [system] {
+ header "__algorithm/ranges_lower_bound.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_make_heap [system] {
+ header "__algorithm/ranges_make_heap.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_max [system] {
+ header "__algorithm/ranges_max.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_max_element [system] {
+ header "__algorithm/ranges_max_element.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_merge [system] {
+ header "__algorithm/ranges_merge.h"
+ export std_private_algorithm_in_in_out_result
+}
+module std_private_algorithm_ranges_min [system] {
+ header "__algorithm/ranges_min.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_min_element [system] {
+ header "__algorithm/ranges_min_element.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_minmax [system] {
+ header "__algorithm/ranges_minmax.h"
+ export std_private_functional_ranges_operations
+ export std_private_algorithm_min_max_result
+}
+module std_private_algorithm_ranges_minmax_element [system] {
+ header "__algorithm/ranges_minmax_element.h"
+ export std_private_functional_ranges_operations
+ export std_private_algorithm_min_max_result
+}
+module std_private_algorithm_ranges_mismatch [system] {
+ header "__algorithm/ranges_mismatch.h"
+ export std_private_algorithm_in_in_result
+}
+module std_private_algorithm_ranges_move [system] {
+ header "__algorithm/ranges_move.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_move_backward [system] {
+ header "__algorithm/ranges_move_backward.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_next_permutation [system] {
+ header "__algorithm/ranges_next_permutation.h"
+ export std_private_algorithm_in_found_result
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_none_of [system] { header "__algorithm/ranges_none_of.h" }
+module std_private_algorithm_ranges_nth_element [system] {
+ header "__algorithm/ranges_nth_element.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_partial_sort [system] {
+ header "__algorithm/ranges_partial_sort.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_partial_sort_copy [system] {
+ header "__algorithm/ranges_partial_sort_copy.h"
+ export std_private_algorithm_in_out_result
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_partition [system] { header "__algorithm/ranges_partition.h" }
+module std_private_algorithm_ranges_partition_copy [system] { header "__algorithm/ranges_partition_copy.h" }
+module std_private_algorithm_ranges_partition_point [system] { header "__algorithm/ranges_partition_point.h" }
+module std_private_algorithm_ranges_pop_heap [system] {
+ header "__algorithm/ranges_pop_heap.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_prev_permutation [system] {
+ header "__algorithm/ranges_prev_permutation.h"
+ export std_private_algorithm_in_found_result
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_push_heap [system] {
+ header "__algorithm/ranges_push_heap.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_remove [system] { header "__algorithm/ranges_remove.h" }
+module std_private_algorithm_ranges_remove_copy [system] {
+ header "__algorithm/ranges_remove_copy.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_remove_copy_if [system] {
+ header "__algorithm/ranges_remove_copy_if.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_remove_if [system] { header "__algorithm/ranges_remove_if.h" }
+module std_private_algorithm_ranges_replace [system] { header "__algorithm/ranges_replace.h" }
+module std_private_algorithm_ranges_replace_copy [system] {
+ header "__algorithm/ranges_replace_copy.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_replace_copy_if [system] {
+ header "__algorithm/ranges_replace_copy_if.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_replace_if [system] { header "__algorithm/ranges_replace_if.h" }
+module std_private_algorithm_ranges_reverse [system] { header "__algorithm/ranges_reverse.h" }
+module std_private_algorithm_ranges_reverse_copy [system] {
+ header "__algorithm/ranges_reverse_copy.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_rotate [system] { header "__algorithm/ranges_rotate.h" }
+module std_private_algorithm_ranges_rotate_copy [system] {
+ header "__algorithm/ranges_rotate_copy.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_sample [system] { header "__algorithm/ranges_sample.h" }
+module std_private_algorithm_ranges_search [system] { header "__algorithm/ranges_search.h" }
+module std_private_algorithm_ranges_search_n [system] { header "__algorithm/ranges_search_n.h" }
+module std_private_algorithm_ranges_set_difference [system] {
+ header "__algorithm/ranges_set_difference.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_set_intersection [system] {
+ header "__algorithm/ranges_set_intersection.h"
+ export std_private_algorithm_in_in_out_result
+}
+module std_private_algorithm_ranges_set_symmetric_difference [system] {
+ header "__algorithm/ranges_set_symmetric_difference.h"
+ export std_private_algorithm_in_in_out_result
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_set_union [system] {
+ header "__algorithm/ranges_set_union.h"
+ export std_private_algorithm_in_in_out_result
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_shuffle [system] { header "__algorithm/ranges_shuffle.h" }
+module std_private_algorithm_ranges_sort [system] {
+ header "__algorithm/ranges_sort.h"
+ export std_private_algorithm_make_projected
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_sort_heap [system] {
+ header "__algorithm/ranges_sort_heap.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_stable_partition [system] { header "__algorithm/ranges_stable_partition.h" }
+module std_private_algorithm_ranges_stable_sort [system] {
+ header "__algorithm/ranges_stable_sort.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_ranges_starts_with [system] { header "__algorithm/ranges_starts_with.h" }
+module std_private_algorithm_ranges_swap_ranges [system] {
+ header "__algorithm/ranges_swap_ranges.h"
+ export std_private_algorithm_in_in_result
+}
+module std_private_algorithm_ranges_transform [system] {
+ header "__algorithm/ranges_transform.h"
+ export std_private_algorithm_in_in_out_result
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_unique [system] { header "__algorithm/ranges_unique.h" }
+module std_private_algorithm_ranges_unique_copy [system] {
+ header "__algorithm/ranges_unique_copy.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_algorithm_ranges_upper_bound [system] {
+ header "__algorithm/ranges_upper_bound.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_algorithm_remove [system] { header "__algorithm/remove.h" }
+module std_private_algorithm_remove_copy [system] { header "__algorithm/remove_copy.h" }
+module std_private_algorithm_remove_copy_if [system] { header "__algorithm/remove_copy_if.h" }
+module std_private_algorithm_remove_if [system] { header "__algorithm/remove_if.h" }
+module std_private_algorithm_replace [system] { header "__algorithm/replace.h" }
+module std_private_algorithm_replace_copy [system] { header "__algorithm/replace_copy.h" }
+module std_private_algorithm_replace_copy_if [system] { header "__algorithm/replace_copy_if.h" }
+module std_private_algorithm_replace_if [system] { header "__algorithm/replace_if.h" }
+module std_private_algorithm_reverse [system] { header "__algorithm/reverse.h" }
+module std_private_algorithm_reverse_copy [system] { header "__algorithm/reverse_copy.h" }
+module std_private_algorithm_rotate [system] { header "__algorithm/rotate.h" }
+module std_private_algorithm_rotate_copy [system] { header "__algorithm/rotate_copy.h" }
+module std_private_algorithm_sample [system] { header "__algorithm/sample.h" }
+module std_private_algorithm_search [system] { header "__algorithm/search.h" }
+module std_private_algorithm_search_n [system] { header "__algorithm/search_n.h" }
+module std_private_algorithm_set_difference [system] { header "__algorithm/set_difference.h" }
+module std_private_algorithm_set_intersection [system] { header "__algorithm/set_intersection.h" }
+module std_private_algorithm_set_symmetric_difference [system] { header "__algorithm/set_symmetric_difference.h" }
+module std_private_algorithm_set_union [system] { header "__algorithm/set_union.h" }
+module std_private_algorithm_shift_left [system] { header "__algorithm/shift_left.h" }
+module std_private_algorithm_shift_right [system] { header "__algorithm/shift_right.h" }
+module std_private_algorithm_shuffle [system] { header "__algorithm/shuffle.h" }
+module std_private_algorithm_sift_down [system] { header "__algorithm/sift_down.h" }
+module std_private_algorithm_sort [system] {
+ header "__algorithm/sort.h"
+ export std_private_debug_utils_strict_weak_ordering_check
+}
+module std_private_algorithm_simd_utils [system] { header "__algorithm/simd_utils.h" }
+module std_private_algorithm_sort_heap [system] { header "__algorithm/sort_heap.h" }
+module std_private_algorithm_stable_partition [system] { header "__algorithm/stable_partition.h" }
+module std_private_algorithm_stable_sort [system] { header "__algorithm/stable_sort.h" }
+module std_private_algorithm_swap_ranges [system] {
+ header "__algorithm/swap_ranges.h"
+ export std_private_algorithm_iterator_operations
+}
+module std_private_algorithm_three_way_comp_ref_type [system] { header "__algorithm/three_way_comp_ref_type.h" }
+module std_private_algorithm_transform [system] { header "__algorithm/transform.h" }
+module std_private_algorithm_uniform_random_bit_generator_adaptor [system] { header "__algorithm/uniform_random_bit_generator_adaptor.h" }
+module std_private_algorithm_unique [system] { header "__algorithm/unique.h" }
+module std_private_algorithm_unique_copy [system] { header "__algorithm/unique_copy.h" }
+module std_private_algorithm_unwrap_iter [system] {
+ header "__algorithm/unwrap_iter.h"
+ export std_private_iterator_iterator_traits
+}
+module std_private_algorithm_unwrap_range [system] {
+ header "__algorithm/unwrap_range.h"
+ export std_private_utility_pair
+}
+module std_private_algorithm_upper_bound [system] { header "__algorithm/upper_bound.h" }
+
+module std_private_array_array_fwd [system] { header "__fwd/array.h" }
+
+module std_private_atomic_aliases [system] {
+ header "__atomic/aliases.h"
+ export std_private_atomic_atomic
+}
+module std_private_atomic_atomic [system] {
+ header "__atomic/atomic.h"
+ export std_private_atomic_atomic_base
+}
+module std_private_atomic_atomic_base [system] { header "__atomic/atomic_base.h" }
+module std_private_atomic_atomic_flag [system] {
+ header "__atomic/atomic_flag.h"
+ export *
+}
+module std_private_atomic_atomic_init [system] { header "__atomic/atomic_init.h" }
+module std_private_atomic_atomic_lock_free [system] { header "__atomic/atomic_lock_free.h" }
+module std_private_atomic_atomic_ref [system] { header "__atomic/atomic_ref.h" }
+module std_private_atomic_atomic_sync [system] {
+ header "__atomic/atomic_sync.h"
+ export std_private_atomic_to_gcc_order
+}
+module std_private_atomic_check_memory_order [system] { header "__atomic/check_memory_order.h" }
+module std_private_atomic_contention_t [system] { header "__atomic/contention_t.h" }
+module std_private_atomic_cxx_atomic_impl [system] { header "__atomic/cxx_atomic_impl.h" }
+module std_private_atomic_fence [system] { header "__atomic/fence.h" }
+module std_private_atomic_is_always_lock_free [system] { header "__atomic/is_always_lock_free.h" }
+module std_private_atomic_kill_dependency [system] { header "__atomic/kill_dependency.h" }
+module std_private_atomic_memory_order [system] { header "__atomic/memory_order.h" }
+module std_private_atomic_to_gcc_order [system] {
+ header "__atomic/to_gcc_order.h"
+ export std_private_atomic_memory_order
+}
+
+module std_private_bit_bit_cast [system] { header "__bit/bit_cast.h" }
+module std_private_bit_bit_ceil [system] { header "__bit/bit_ceil.h" }
+module std_private_bit_bit_floor [system] { header "__bit/bit_floor.h" }
+module std_private_bit_bit_log2 [system] { header "__bit/bit_log2.h" }
+module std_private_bit_bit_width [system] { header "__bit/bit_width.h" }
+module std_private_bit_blsr [system] { header "__bit/blsr.h" }
+module std_private_bit_byteswap [system] { header "__bit/byteswap.h" }
+module std_private_bit_countl [system] { header "__bit/countl.h" }
+module std_private_bit_countr [system] { header "__bit/countr.h" }
+module std_private_bit_endian [system] { header "__bit/endian.h" }
+module std_private_bit_has_single_bit [system] { header "__bit/has_single_bit.h" }
+module std_private_bit_invert_if [system] { header "__bit/invert_if.h" }
+module std_private_bit_popcount [system] { header "__bit/popcount.h" }
+module std_private_bit_rotate [system] { header "__bit/rotate.h" }
+
+module std_private_chrono_calendar [system] { header "__chrono/calendar.h" }
+module std_private_chrono_concepts [system] { header "__chrono/concepts.h" }
+module std_private_chrono_convert_to_timespec [system] { header "__chrono/convert_to_timespec.h" }
+module std_private_chrono_convert_to_tm [system] { header "__chrono/convert_to_tm.h" }
+module std_private_chrono_day [system] { header "__chrono/day.h" }
+module std_private_chrono_duration [system] {
+ header "__chrono/duration.h"
+ export std_private_type_traits_is_convertible
+}
+module std_private_chrono_exception [system] { header "__chrono/exception.h" }
+module std_private_chrono_file_clock [system] { header "__chrono/file_clock.h" }
+module std_private_chrono_formatter [system] {
+ header "__chrono/formatter.h"
+}
+module std_private_chrono_hh_mm_ss [system] { header "__chrono/hh_mm_ss.h" }
+module std_private_chrono_high_resolution_clock [system] {
+ header "__chrono/high_resolution_clock.h"
+ export std_private_chrono_steady_clock
+ export std_private_chrono_system_clock
+}
+module std_private_chrono_leap_second [system] { header "__chrono/leap_second.h" }
+module std_private_chrono_literals [system] { header "__chrono/literals.h" }
+module std_private_chrono_local_info [system] {
+ header "__chrono/local_info.h"
+ export std_private_chrono_sys_info
+}
+module std_private_chrono_month [system] { header "__chrono/month.h" }
+module std_private_chrono_month_weekday [system] { header "__chrono/month_weekday.h" }
+module std_private_chrono_monthday [system] { header "__chrono/monthday.h" }
+module std_private_chrono_ostream [system] {
+ header "__chrono/ostream.h"
+}
+module std_private_chrono_parser_std_format_spec [system] {
+ header "__chrono/parser_std_format_spec.h"
+}
+module std_private_chrono_statically_widen [system] { header "__chrono/statically_widen.h" }
+module std_private_chrono_steady_clock [system] {
+ header "__chrono/steady_clock.h"
+ export std_private_chrono_time_point
+}
+module std_private_chrono_time_zone [system] {
+ header "__chrono/time_zone.h"
+ export std_private_memory_unique_ptr
+}
+module std_private_chrono_time_zone_link [system] {
+ header "__chrono/time_zone_link.h"
+}
+module std_private_chrono_sys_info [system] {
+ header "__chrono/sys_info.h"
+}
+module std_private_chrono_system_clock [system] {
+ header "__chrono/system_clock.h"
+ export std_private_chrono_time_point
+}
+module std_private_chrono_tzdb [system] {
+ header "__chrono/tzdb.h"
+ export *
+}
+module std_private_chrono_tzdb_list [system] {
+ header "__chrono/tzdb_list.h"
+ export *
+}
+module std_private_chrono_time_point [system] { header "__chrono/time_point.h" }
+module std_private_chrono_weekday [system] { header "__chrono/weekday.h" }
+module std_private_chrono_year [system] { header "__chrono/year.h" }
+module std_private_chrono_year_month [system] { header "__chrono/year_month.h" }
+module std_private_chrono_year_month_day [system] { header "__chrono/year_month_day.h" }
+module std_private_chrono_year_month_weekday [system] { header "__chrono/year_month_weekday.h" }
+module std_private_chrono_zoned_time [system] { header "__chrono/zoned_time.h" }
+
+module std_private_compare_common_comparison_category [system] { header "__compare/common_comparison_category.h" }
+module std_private_compare_compare_partial_order_fallback [system] { header "__compare/compare_partial_order_fallback.h" }
+module std_private_compare_compare_strong_order_fallback [system] { header "__compare/compare_strong_order_fallback.h" }
+module std_private_compare_compare_three_way [system] { header "__compare/compare_three_way.h" }
+module std_private_compare_compare_three_way_result [system] { header "__compare/compare_three_way_result.h" }
+module std_private_compare_compare_weak_order_fallback [system] { header "__compare/compare_weak_order_fallback.h" }
+module std_private_compare_is_eq [system] { header "__compare/is_eq.h" }
+module std_private_compare_ordering [system] { header "__compare/ordering.h" }
+module std_private_compare_partial_order [system] { header "__compare/partial_order.h" }
+module std_private_compare_strong_order [system] { header "__compare/strong_order.h" }
+module std_private_compare_synth_three_way [system] { header "__compare/synth_three_way.h" }
+module std_private_compare_three_way_comparable [system] { header "__compare/three_way_comparable.h" }
+module std_private_compare_weak_order [system] { header "__compare/weak_order.h" }
+
+module std_private_complex_complex_fwd [system] { header "__fwd/complex.h" }
+
+module std_private_concepts_arithmetic [system] { header "__concepts/arithmetic.h" }
+module std_private_concepts_assignable [system] { header "__concepts/assignable.h" }
+module std_private_concepts_boolean_testable [system] { header "__concepts/boolean_testable.h" }
+module std_private_concepts_class_or_enum [system] { header "__concepts/class_or_enum.h" }
+module std_private_concepts_common_reference_with [system] { header "__concepts/common_reference_with.h" }
+module std_private_concepts_common_with [system] { header "__concepts/common_with.h" }
+module std_private_concepts_constructible [system] {
+ header "__concepts/constructible.h"
+ export std_private_concepts_destructible
+}
+module std_private_concepts_convertible_to [system] { header "__concepts/convertible_to.h" }
+module std_private_concepts_copyable [system] { header "__concepts/copyable.h" }
+module std_private_concepts_derived_from [system] { header "__concepts/derived_from.h" }
+module std_private_concepts_destructible [system] {
+ header "__concepts/destructible.h"
+ export std_private_type_traits_is_nothrow_destructible
+}
+module std_private_concepts_different_from [system] { header "__concepts/different_from.h" }
+module std_private_concepts_equality_comparable [system] {
+ header "__concepts/equality_comparable.h"
+ export std_private_type_traits_common_reference
+}
+module std_private_concepts_invocable [system] { header "__concepts/invocable.h" }
+module std_private_concepts_movable [system] {
+ header "__concepts/movable.h"
+ export std_private_type_traits_is_object
+}
+module std_private_concepts_predicate [system] { header "__concepts/predicate.h" }
+module std_private_concepts_regular [system] { header "__concepts/regular.h" }
+module std_private_concepts_relation [system] { header "__concepts/relation.h" }
+module std_private_concepts_same_as [system] {
+ header "__concepts/same_as.h"
+ export std_private_type_traits_is_same
+}
+module std_private_concepts_semiregular [system] { header "__concepts/semiregular.h" }
+module std_private_concepts_swappable [system] { header "__concepts/swappable.h" }
+module std_private_concepts_totally_ordered [system] { header "__concepts/totally_ordered.h" }
+
+module std_private_debug_utils_randomize_range [system] { header "__debug_utils/randomize_range.h" }
+module std_private_debug_utils_sanitizers [system] { header "__debug_utils/sanitizers.h" }
+module std_private_debug_utils_strict_weak_ordering_check [system] {
+ header "__debug_utils/strict_weak_ordering_check.h"
+ export std_private_type_traits_is_constant_evaluated
+}
+
+module std_private_deque_fwd [system] { header "__fwd/deque.h" }
+
+module std_private_exception_exception [system] { header "__exception/exception.h" }
+module std_private_exception_exception_ptr [system] {
+ header "__exception/exception_ptr.h"
+ export std_private_exception_operations
+}
+module std_private_exception_nested_exception [system] { header "__exception/nested_exception.h" }
+module std_private_exception_operations [system] { header "__exception/operations.h" }
+module std_private_exception_terminate [system] { header "__exception/terminate.h" }
+
+module std_private_expected_bad_expected_access [system] { header "__expected/bad_expected_access.h" }
+module std_private_expected_expected [system] { header "__expected/expected.h" }
+module std_private_expected_unexpect [system] { header "__expected/unexpect.h" }
+module std_private_expected_unexpected [system] { header "__expected/unexpected.h" }
+
+module std_private_format_buffer [system] { header "__format/buffer.h" }
+module std_private_format_concepts [system] { header "__format/concepts.h" }
+module std_private_format_container_adaptor [system] { header "__format/container_adaptor.h" }
+module std_private_format_enable_insertable [system] { header "__format/enable_insertable.h" }
+module std_private_format_escaped_output_table [system] { header "__format/escaped_output_table.h" }
+module std_private_format_extended_grapheme_cluster_table [system] { header "__format/extended_grapheme_cluster_table.h" }
+module std_private_format_format_arg [system] { header "__format/format_arg.h" }
+module std_private_format_format_arg_store [system] { header "__format/format_arg_store.h" }
+module std_private_format_format_args [system] { header "__format/format_args.h" }
+module std_private_format_format_context [system] {
+ header "__format/format_context.h"
+ export *
+}
+module std_private_format_format_error [system] { header "__format/format_error.h" }
+module std_private_format_format_functions [system] {
+ header "__format/format_functions.h"
+ export std_string
+}
+module std_private_format_fwd [system] { header "__fwd/format.h" }
+module std_private_format_format_parse_context [system] { header "__format/format_parse_context.h" }
+module std_private_format_format_string [system] { header "__format/format_string.h" }
+module std_private_format_format_to_n_result [system] {
+ header "__format/format_to_n_result.h"
+ export std_private_iterator_incrementable_traits
+}
+module std_private_format_formatter [system] { header "__format/formatter.h" }
+module std_private_format_formatter_bool [system] { header "__format/formatter_bool.h" }
+module std_private_format_formatter_char [system] { header "__format/formatter_char.h" }
+module std_private_format_formatter_floating_point [system] { header "__format/formatter_floating_point.h" }
+module std_private_format_formatter_integer [system] { header "__format/formatter_integer.h" }
+module std_private_format_formatter_integral [system] { header "__format/formatter_integral.h" }
+module std_private_format_formatter_output [system] { header "__format/formatter_output.h" }
+module std_private_format_formatter_pointer [system] { header "__format/formatter_pointer.h" }
+module std_private_format_formatter_string [system] { header "__format/formatter_string.h" }
+module std_private_format_formatter_tuple [system] { header "__format/formatter_tuple.h" }
+module std_private_format_indic_conjunct_break_table [system] { header "__format/indic_conjunct_break_table.h" }
+module std_private_format_parser_std_format_spec [system] { header "__format/parser_std_format_spec.h" }
+module std_private_format_range_default_formatter [system] { header "__format/range_default_formatter.h" }
+module std_private_format_range_formatter [system] { header "__format/range_formatter.h" }
+module std_private_format_unicode [system] {
+ header "__format/unicode.h"
+ export std_private_format_extended_grapheme_cluster_table
+ export std_private_format_indic_conjunct_break_table
+}
+module std_private_format_width_estimation_table [system] { header "__format/width_estimation_table.h" }
+module std_private_format_write_escaped [system] { header "__format/write_escaped.h" }
+
+module std_private_functional_binary_function [system] { header "__functional/binary_function.h" }
+module std_private_functional_binary_negate [system] { header "__functional/binary_negate.h" }
+module std_private_functional_bind [system] { header "__functional/bind.h" }
+module std_private_functional_bind_back [system] { header "__functional/bind_back.h" }
+module std_private_functional_bind_front [system] { header "__functional/bind_front.h" }
+module std_private_functional_binder1st [system] { header "__functional/binder1st.h" }
+module std_private_functional_binder2nd [system] { header "__functional/binder2nd.h" }
+module std_private_functional_boyer_moore_searcher [system] {
+ header "__functional/boyer_moore_searcher.h"
+ export std_private_memory_shared_ptr
+}
+module std_private_functional_compose [system] {
+ header "__functional/compose.h"
+ export std_private_functional_perfect_forward
+}
+module std_private_functional_default_searcher [system] { header "__functional/default_searcher.h" }
+module std_private_functional_function [system] { header "__functional/function.h" }
+module std_private_functional_hash [system] {
+ header "__functional/hash.h"
+ export std_cstdint
+ export std_private_type_traits_underlying_type
+ export std_private_utility_pair
+}
+module std_private_functional_fwd [system] { header "__fwd/functional.h" }
+module std_private_functional_identity [system] { header "__functional/identity.h" }
+module std_private_functional_invoke [system] {
+ header "__functional/invoke.h"
+ export *
+}
+module std_private_functional_is_transparent [system] { header "__functional/is_transparent.h" }
+module std_private_functional_mem_fn [system] { header "__functional/mem_fn.h" }
+module std_private_functional_mem_fun_ref [system] { header "__functional/mem_fun_ref.h" }
+module std_private_functional_not_fn [system] {
+ header "__functional/not_fn.h"
+ export std_private_functional_perfect_forward
+}
+module std_private_functional_operations [system] { header "__functional/operations.h" }
+module std_private_functional_perfect_forward [system] {
+ header "__functional/perfect_forward.h"
+ export *
+}
+module std_private_functional_pointer_to_binary_function [system] { header "__functional/pointer_to_binary_function.h" }
+module std_private_functional_pointer_to_unary_function [system] { header "__functional/pointer_to_unary_function.h" }
+module std_private_functional_ranges_operations [system] { header "__functional/ranges_operations.h" }
+module std_private_functional_reference_wrapper [system] { header "__functional/reference_wrapper.h" }
+module std_private_functional_unary_function [system] { header "__functional/unary_function.h" }
+module std_private_functional_unary_negate [system] { header "__functional/unary_negate.h" }
+module std_private_functional_weak_result_type [system] { header "__functional/weak_result_type.h" }
+
+module std_private_ios_fpos [system] { header "__ios/fpos.h" }
+
+module std_private_iosfwd_fstream_fwd [system] { header "__fwd/fstream.h" }
+module std_private_iosfwd_ios_fwd [system] { header "__fwd/ios.h" }
+module std_private_iosfwd_istream_fwd [system] { header "__fwd/istream.h" }
+module std_private_iosfwd_ostream_fwd [system] { header "__fwd/ostream.h" }
+module std_private_iosfwd_sstream_fwd [system] { header "__fwd/sstream.h" }
+module std_private_iosfwd_streambuf_fwd [system] { header "__fwd/streambuf.h" }
+
+module std_private_iterator_access [system] { header "__iterator/access.h" }
+module std_private_iterator_advance [system] { header "__iterator/advance.h" }
+module std_private_iterator_aliasing_iterator [system] { header "__iterator/aliasing_iterator.h" }
+module std_private_iterator_back_insert_iterator [system] { header "__iterator/back_insert_iterator.h" }
+module std_private_iterator_bounded_iter [system] { header "__iterator/bounded_iter.h" }
+module std_private_iterator_common_iterator [system] { header "__iterator/common_iterator.h" }
+module std_private_iterator_concepts [system] {
+ header "__iterator/concepts.h"
+ export std_private_concepts_constructible
+ export std_private_concepts_equality_comparable
+ export std_private_concepts_movable
+ export std_private_type_traits_common_reference
+ export std_private_type_traits_is_reference
+ export std_private_type_traits_remove_cvref
+}
+module std_private_iterator_counted_iterator [system] { header "__iterator/counted_iterator.h" }
+module std_private_iterator_cpp17_iterator_concepts [system] { header "__iterator/cpp17_iterator_concepts.h" }
+module std_private_iterator_data [system] { header "__iterator/data.h" }
+module std_private_iterator_default_sentinel [system] { header "__iterator/default_sentinel.h" }
+module std_private_iterator_distance [system] {
+ header "__iterator/distance.h"
+ export std_private_ranges_size
+}
+module std_private_iterator_empty [system] { header "__iterator/empty.h" }
+module std_private_iterator_erase_if_container [system] { header "__iterator/erase_if_container.h" }
+module std_private_iterator_front_insert_iterator [system] { header "__iterator/front_insert_iterator.h" }
+module std_private_iterator_incrementable_traits [system] { header "__iterator/incrementable_traits.h" }
+module std_private_iterator_indirectly_comparable [system] { header "__iterator/indirectly_comparable.h" }
+module std_private_iterator_insert_iterator [system] { header "__iterator/insert_iterator.h" }
+module std_private_iterator_istream_iterator [system] { header "__iterator/istream_iterator.h" }
+module std_private_iterator_istreambuf_iterator [system] { header "__iterator/istreambuf_iterator.h" }
+module std_private_iterator_iter_move [system] { header "__iterator/iter_move.h" }
+module std_private_iterator_iter_swap [system] { header "__iterator/iter_swap.h" }
+module std_private_iterator_iterator [system] { header "__iterator/iterator.h" }
+module std_private_iterator_iterator_traits [system] {
+ header "__iterator/iterator_traits.h"
+ export std_private_type_traits_is_primary_template
+ export std_private_type_traits_integral_constant
+}
+module std_private_iterator_iterator_with_data [system] { header "__iterator/iterator_with_data.h" }
+module std_private_iterator_mergeable [system] {
+ header "__iterator/mergeable.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_iterator_move_iterator [system] { header "__iterator/move_iterator.h" }
+module std_private_iterator_move_sentinel [system] { header "__iterator/move_sentinel.h" }
+module std_private_iterator_next [system] { header "__iterator/next.h" }
+module std_private_iterator_ostream_iterator [system] { header "__iterator/ostream_iterator.h" }
+module std_private_iterator_ostreambuf_iterator [system] {
+ header "__iterator/ostreambuf_iterator.h"
+ export *
+}
+module std_private_iterator_permutable [system] { header "__iterator/permutable.h" }
+module std_private_iterator_prev [system] { header "__iterator/prev.h" }
+module std_private_iterator_projected [system] { header "__iterator/projected.h" }
+module std_private_iterator_ranges_iterator_traits [system] { header "__iterator/ranges_iterator_traits.h" }
+module std_private_iterator_readable_traits [system] { header "__iterator/readable_traits.h" }
+module std_private_iterator_reverse_access [system] { header "__iterator/reverse_access.h" }
+module std_private_iterator_reverse_iterator [system] { header "__iterator/reverse_iterator.h" }
+module std_private_iterator_segmented_iterator [system] { header "__iterator/segmented_iterator.h" }
+module std_private_iterator_size [system] { header "__iterator/size.h" }
+module std_private_iterator_sortable [system] {
+ header "__iterator/sortable.h"
+ export std_private_functional_ranges_operations
+}
+module std_private_iterator_unreachable_sentinel [system] { header "__iterator/unreachable_sentinel.h" }
+module std_private_iterator_wrap_iter [system] { header "__iterator/wrap_iter.h" }
+
+module std_private_locale_locale_base_api_android [system] { textual header "__locale_dir/locale_base_api/android.h" }
+module std_private_locale_locale_base_api_bsd_locale_defaults [system] { textual header "__locale_dir/locale_base_api/bsd_locale_defaults.h" }
+module std_private_locale_locale_base_api_bsd_locale_fallbacks [system] { textual header "__locale_dir/locale_base_api/bsd_locale_fallbacks.h" }
+module std_private_locale_locale_base_api_fuchsia [system] { textual header "__locale_dir/locale_base_api/fuchsia.h" }
+module std_private_locale_locale_base_api_ibm [system] { textual header "__locale_dir/locale_base_api/ibm.h" }
+module std_private_locale_locale_base_api_locale_guard [system] { header "__locale_dir/locale_base_api/locale_guard.h" }
+module std_private_locale_locale_base_api_musl [system] { textual header "__locale_dir/locale_base_api/musl.h" }
+module std_private_locale_locale_base_api_newlib [system] { textual header "__locale_dir/locale_base_api/newlib.h" }
+module std_private_locale_locale_base_api_openbsd [system] { textual header "__locale_dir/locale_base_api/openbsd.h" }
+module std_private_locale_locale_base_api_win32 [system] { textual header "__locale_dir/locale_base_api/win32.h" }
+module std_private_locale_locale_base_api [system] {
+ header "__locale_dir/locale_base_api.h"
+ export *
+}
+
+module std_private_math_abs [system] { header "__math/abs.h" }
+module std_private_math_copysign [system] { header "__math/copysign.h" }
+module std_private_math_error_functions [system] { header "__math/error_functions.h" }
+module std_private_math_exponential_functions [system] { header "__math/exponential_functions.h" }
+module std_private_math_fdim [system] { header "__math/fdim.h" }
+module std_private_math_fma [system] { header "__math/fma.h" }
+module std_private_math_gamma [system] { header "__math/gamma.h" }
+module std_private_math_hyperbolic_functions [system] { header "__math/hyperbolic_functions.h" }
+module std_private_math_hypot [system] { header "__math/hypot.h" }
+module std_private_math_inverse_hyperbolic_functions [system] { header "__math/inverse_hyperbolic_functions.h" }
+module std_private_math_inverse_trigonometric_functions [system] { header "__math/inverse_trigonometric_functions.h" }
+module std_private_math_logarithms [system] { header "__math/logarithms.h" }
+module std_private_math_min_max [system] { header "__math/min_max.h" }
+module std_private_math_modulo [system] { header "__math/modulo.h" }
+module std_private_math_remainder [system] { header "__math/remainder.h" }
+module std_private_math_roots [system] { header "__math/roots.h" }
+module std_private_math_rounding_functions [system] { header "__math/rounding_functions.h" }
+module std_private_math_special_functions [system] { header "__math/special_functions.h" }
+module std_private_math_traits [system] { header "__math/traits.h" }
+module std_private_math_trigonometric_functions [system] { header "__math/trigonometric_functions.h" }
+
+module std_private_memory_addressof [system] { header "__memory/addressof.h" }
+module std_private_memory_align [system] { header "__memory/align.h" }
+module std_private_memory_aligned_alloc [system] { header "__memory/aligned_alloc.h" }
+module std_private_memory_allocate_at_least [system] { header "__memory/allocate_at_least.h" }
+module std_private_memory_allocation_guard [system] { header "__memory/allocation_guard.h" }
+module std_private_memory_allocator [system] { header "__memory/allocator.h" }
+module std_private_memory_allocator_arg_t [system] { header "__memory/allocator_arg_t.h" }
+module std_private_memory_allocator_destructor [system] { header "__memory/allocator_destructor.h" }
+module std_private_memory_allocator_traits [system] { header "__memory/allocator_traits.h" }
+module std_private_memory_array_cookie [system] { header "__memory/array_cookie.h" }
+module std_private_memory_assume_aligned [system] { header "__memory/assume_aligned.h" }
+module std_private_memory_auto_ptr [system] { header "__memory/auto_ptr.h" }
+module std_private_memory_builtin_new_allocator [system] {
+ header "__memory/builtin_new_allocator.h"
+ export *
+}
+module std_private_memory_compressed_pair [system] { header "__memory/compressed_pair.h" }
+module std_private_memory_concepts [system] {
+ header "__memory/concepts.h"
+ export std_private_type_traits_remove_reference
+}
+module std_private_memory_construct_at [system] { header "__memory/construct_at.h" }
+module std_private_memory_destruct_n [system] { header "__memory/destruct_n.h" }
+module std_private_memory_fwd [system] { header "__fwd/memory.h" }
+module std_private_memory_inout_ptr [system] { header "__memory/inout_ptr.h" }
+module std_private_memory_noexcept_move_assign_container [system] { header "__memory/noexcept_move_assign_container.h" }
+module std_private_memory_out_ptr [system] { header "__memory/out_ptr.h" }
+module std_private_memory_pointer_traits [system] { header "__memory/pointer_traits.h" }
+module std_private_memory_ranges_construct_at [system] { header "__memory/ranges_construct_at.h" }
+module std_private_memory_ranges_uninitialized_algorithms [system] {
+ header "__memory/ranges_uninitialized_algorithms.h"
+ export std_private_algorithm_in_out_result
+}
+module std_private_memory_raw_storage_iterator [system] { header "__memory/raw_storage_iterator.h" }
+module std_private_memory_shared_ptr [system] {
+ header "__memory/shared_ptr.h"
+ export std_private_memory_uninitialized_algorithms
+}
+module std_private_memory_swap_allocator [system] { header "__memory/swap_allocator.h" }
+module std_private_memory_temp_value [system] { header "__memory/temp_value.h" }
+module std_private_memory_temporary_buffer [system] {
+ header "__memory/temporary_buffer.h"
+ export std_private_utility_pair
+}
+module std_private_memory_uninitialized_algorithms [system] {
+ header "__memory/uninitialized_algorithms.h"
+ export std_private_algorithm_copy
+}
+module std_private_memory_unique_ptr [system] {
+ header "__memory/unique_ptr.h"
+ export std_private_type_traits_add_lvalue_reference
+ export std_private_type_traits_is_pointer
+ export std_private_type_traits_type_identity
+}
+module std_private_memory_unique_temporary_buffer [system] {
+ header "__memory/unique_temporary_buffer.h"
+ export std_private_memory_unique_ptr
+ export std_private_type_traits_is_constant_evaluated
+}
+module std_private_memory_uses_allocator [system] { header "__memory/uses_allocator.h" }
+module std_private_memory_uses_allocator_construction [system] { header "__memory/uses_allocator_construction.h" }
+module std_private_memory_voidify [system] { header "__memory/voidify.h" }
+
+module std_private_memory_resource_memory_resource [system] { header "__memory_resource/memory_resource.h" }
+module std_private_memory_resource_memory_resource_fwd [system] { header "__fwd/memory_resource.h" }
+module std_private_memory_resource_monotonic_buffer_resource [system] { header "__memory_resource/monotonic_buffer_resource.h" }
+module std_private_memory_resource_polymorphic_allocator [system] { header "__memory_resource/polymorphic_allocator.h" }
+module std_private_memory_resource_pool_options [system] { header "__memory_resource/pool_options.h" }
+module std_private_memory_resource_synchronized_pool_resource [system] {
+ header "__memory_resource/synchronized_pool_resource.h"
+ export *
+}
+module std_private_memory_resource_unsynchronized_pool_resource [system] { header "__memory_resource/unsynchronized_pool_resource.h" }
+
+module std_private_mutex_lock_guard [system] { header "__mutex/lock_guard.h" }
+module std_private_mutex_mutex [system] { header "__mutex/mutex.h" }
+module std_private_mutex_once_flag [system] { header "__mutex/once_flag.h" }
+module std_private_mutex_tag_types [system] { header "__mutex/tag_types.h" }
+module std_private_mutex_unique_lock [system] { header "__mutex/unique_lock.h" }
+
+module std_private_numeric_accumulate [system] { header "__numeric/accumulate.h" }
+module std_private_numeric_adjacent_difference [system] { header "__numeric/adjacent_difference.h" }
+module std_private_numeric_exclusive_scan [system] { header "__numeric/exclusive_scan.h" }
+module std_private_numeric_gcd_lcm [system] { header "__numeric/gcd_lcm.h" }
+module std_private_numeric_inclusive_scan [system] { header "__numeric/inclusive_scan.h" }
+module std_private_numeric_inner_product [system] { header "__numeric/inner_product.h" }
+module std_private_numeric_iota [system] { header "__numeric/iota.h" }
+module std_private_numeric_midpoint [system] { header "__numeric/midpoint.h" }
+module std_private_numeric_partial_sum [system] { header "__numeric/partial_sum.h" }
+module std_private_numeric_pstl [system] {
+ header "__numeric/pstl.h"
+ export *
+}
+module std_private_numeric_reduce [system] { header "__numeric/reduce.h" }
+module std_private_numeric_saturation_arithmetic [system] { header "__numeric/saturation_arithmetic.h" }
+module std_private_numeric_transform_exclusive_scan [system] { header "__numeric/transform_exclusive_scan.h" }
+module std_private_numeric_transform_inclusive_scan [system] { header "__numeric/transform_inclusive_scan.h" }
+module std_private_numeric_transform_reduce [system] { header "__numeric/transform_reduce.h" }
+
+module std_private_pstl [system] {
+ header "__pstl/backend.h"
+ header "__pstl/backend_fwd.h"
+ header "__pstl/backends/default.h"
+ header "__pstl/backends/libdispatch.h"
+ header "__pstl/backends/serial.h"
+ header "__pstl/backends/std_thread.h"
+ header "__pstl/cpu_algos/any_of.h"
+ header "__pstl/cpu_algos/cpu_traits.h"
+ header "__pstl/cpu_algos/fill.h"
+ header "__pstl/cpu_algos/find_if.h"
+ header "__pstl/cpu_algos/for_each.h"
+ header "__pstl/cpu_algos/merge.h"
+ header "__pstl/cpu_algos/stable_sort.h"
+ header "__pstl/cpu_algos/transform.h"
+ header "__pstl/cpu_algos/transform_reduce.h"
+ header "__pstl/dispatch.h"
+ header "__pstl/handle_exception.h"
+}
+
+module std_private_queue_fwd [system] { header "__fwd/queue.h" }
+
+module std_private_ostream_basic_ostream [system] {
+ header "__ostream/basic_ostream.h"
+ export std_streambuf
+}
+module std_private_ostream_print [system] {
+ header "__ostream/print.h"
+ export std_print
+}
+
+module std_private_random_bernoulli_distribution [system] { header "__random/bernoulli_distribution.h" }
+module std_private_random_binomial_distribution [system] { header "__random/binomial_distribution.h" }
+module std_private_random_cauchy_distribution [system] { header "__random/cauchy_distribution.h" }
+module std_private_random_chi_squared_distribution [system] { header "__random/chi_squared_distribution.h" }
+module std_private_random_clamp_to_integral [system] { header "__random/clamp_to_integral.h" }
+module std_private_random_default_random_engine [system] { header "__random/default_random_engine.h" }
+module std_private_random_discard_block_engine [system] { header "__random/discard_block_engine.h" }
+module std_private_random_discrete_distribution [system] {
+ header "__random/discrete_distribution.h"
+ export *
+}
+module std_private_random_exponential_distribution [system] { header "__random/exponential_distribution.h" }
+module std_private_random_extreme_value_distribution [system] { header "__random/extreme_value_distribution.h" }
+module std_private_random_fisher_f_distribution [system] { header "__random/fisher_f_distribution.h" }
+module std_private_random_gamma_distribution [system] { header "__random/gamma_distribution.h" }
+module std_private_random_generate_canonical [system] { header "__random/generate_canonical.h" }
+module std_private_random_geometric_distribution [system] { header "__random/geometric_distribution.h" }
+module std_private_random_independent_bits_engine [system] { header "__random/independent_bits_engine.h" }
+module std_private_random_is_seed_sequence [system] { header "__random/is_seed_sequence.h" }
+module std_private_random_is_valid [system] { header "__random/is_valid.h" }
+module std_private_random_knuth_b [system] { header "__random/knuth_b.h" }
+module std_private_random_linear_congruential_engine [system] { header "__random/linear_congruential_engine.h" }
+module std_private_random_log2 [system] { header "__random/log2.h" }
+module std_private_random_lognormal_distribution [system] { header "__random/lognormal_distribution.h" }
+module std_private_random_mersenne_twister_engine [system] { header "__random/mersenne_twister_engine.h" }
+module std_private_random_negative_binomial_distribution [system] { header "__random/negative_binomial_distribution.h" }
+module std_private_random_normal_distribution [system] { header "__random/normal_distribution.h" }
+module std_private_random_piecewise_constant_distribution [system] {
+ header "__random/piecewise_constant_distribution.h"
+ export *
+}
+module std_private_random_piecewise_linear_distribution [system] {
+ header "__random/piecewise_linear_distribution.h"
+ export *
+}
+module std_private_random_poisson_distribution [system] { header "__random/poisson_distribution.h" }
+module std_private_random_random_device [system] {
+ header "__random/random_device.h"
+ export *
+}
+module std_private_random_ranlux [system] { header "__random/ranlux.h" }
+module std_private_random_seed_seq [system] {
+ header "__random/seed_seq.h"
+ export *
+}
+module std_private_random_shuffle_order_engine [system] { header "__random/shuffle_order_engine.h" }
+module std_private_random_student_t_distribution [system] { header "__random/student_t_distribution.h" }
+module std_private_random_subtract_with_carry_engine [system] { header "__random/subtract_with_carry_engine.h" }
+module std_private_random_uniform_int_distribution [system] { header "__random/uniform_int_distribution.h" }
+module std_private_random_uniform_random_bit_generator [system] { header "__random/uniform_random_bit_generator.h" }
+module std_private_random_uniform_real_distribution [system] { header "__random/uniform_real_distribution.h" }
+module std_private_random_weibull_distribution [system] { header "__random/weibull_distribution.h" }
+
+module std_private_ranges_access [system] { header "__ranges/access.h" }
+module std_private_ranges_all [system] {
+ header "__ranges/all.h"
+ export std_private_functional_compose
+ export std_private_functional_perfect_forward
+ export std_private_ranges_owning_view
+}
+module std_private_ranges_as_rvalue_view [system] { header "__ranges/as_rvalue_view.h" }
+module std_private_ranges_chunk_by_view [system] { header "__ranges/chunk_by_view.h" }
+module std_private_ranges_common_view [system] { header "__ranges/common_view.h" }
+module std_private_ranges_concepts [system] {
+ header "__ranges/concepts.h"
+ export std_private_iterator_concepts
+}
+module std_private_ranges_container_compatible_range [system] { header "__ranges/container_compatible_range.h" }
+module std_private_ranges_counted [system] {
+ header "__ranges/counted.h"
+ export std_span
+}
+module std_private_ranges_dangling [system] { header "__ranges/dangling.h" }
+module std_private_ranges_data [system] { header "__ranges/data.h" }
+module std_private_ranges_drop_view [system] { header "__ranges/drop_view.h" }
+module std_private_ranges_drop_while_view [system] { header "__ranges/drop_while_view.h" }
+module std_private_ranges_elements_view [system] { header "__ranges/elements_view.h" }
+module std_private_ranges_empty [system] { header "__ranges/empty.h" }
+module std_private_ranges_empty_view [system] { header "__ranges/empty_view.h" }
+module std_private_ranges_enable_borrowed_range [system] { header "__ranges/enable_borrowed_range.h" }
+module std_private_ranges_enable_view [system] { header "__ranges/enable_view.h" }
+module std_private_ranges_filter_view [system] {
+ header "__ranges/filter_view.h"
+ export std_private_ranges_range_adaptor
+}
+module std_private_ranges_from_range [system] { header "__ranges/from_range.h" }
+module std_private_ranges_iota_view [system] { header "__ranges/iota_view.h" }
+module std_private_ranges_istream_view [system] {
+ header "__ranges/istream_view.h"
+}
+module std_private_ranges_join_view [system] {
+ header "__ranges/join_view.h"
+ export std_private_iterator_iterator_with_data
+ export std_private_iterator_segmented_iterator
+}
+module std_private_ranges_lazy_split_view [system] {
+ header "__ranges/lazy_split_view.h"
+ export std_private_ranges_non_propagating_cache
+}
+module std_private_ranges_movable_box [system] { header "__ranges/movable_box.h" }
+module std_private_ranges_non_propagating_cache [system] { header "__ranges/non_propagating_cache.h" }
+module std_private_ranges_owning_view [system] { header "__ranges/owning_view.h" }
+module std_private_ranges_range_adaptor [system] { header "__ranges/range_adaptor.h" }
+module std_private_ranges_rbegin [system] { header "__ranges/rbegin.h" }
+module std_private_ranges_ref_view [system] { header "__ranges/ref_view.h" }
+module std_private_ranges_rend [system] { header "__ranges/rend.h" }
+module std_private_ranges_repeat_view [system] { header "__ranges/repeat_view.h" }
+module std_private_ranges_reverse_view [system] { header "__ranges/reverse_view.h" }
+module std_private_ranges_single_view [system] { header "__ranges/single_view.h" }
+module std_private_ranges_size [system] {
+ header "__ranges/size.h"
+ export std_private_type_traits_make_unsigned
+}
+module std_private_ranges_split_view [system] { header "__ranges/split_view.h" }
+module std_private_ranges_subrange [system] {
+ header "__ranges/subrange.h"
+ export std_private_ranges_subrange_fwd
+}
+module std_private_ranges_subrange_fwd [system] {
+ header "__fwd/subrange.h"
+ export std_private_iterator_concepts
+}
+module std_private_ranges_take_view [system] { header "__ranges/take_view.h" }
+module std_private_ranges_take_while_view [system] { header "__ranges/take_while_view.h" }
+module std_private_ranges_to [system] { header "__ranges/to.h" }
+module std_private_ranges_transform_view [system] {
+ header "__ranges/transform_view.h"
+ export std_private_functional_bind_back
+ export std_private_functional_perfect_forward
+ export std_private_ranges_movable_box
+}
+module std_private_ranges_view_interface [system] { header "__ranges/view_interface.h" }
+module std_private_ranges_views [system] { header "__ranges/views.h" }
+module std_private_ranges_zip_view [system] {
+ header "__ranges/zip_view.h"
+ export std_private_utility_pair
+}
+
+module std_private_span_span_fwd [system] { header "__fwd/span.h" }
+
+module std_private_stack_fwd [system] { header "__fwd/stack.h" }
+
+module std_private_string_char_traits [system] {
+ header "__string/char_traits.h"
+ export *
+}
+module std_private_string_constexpr_c_functions [system] {
+ header "__string/constexpr_c_functions.h"
+ export std_private_type_traits_is_equality_comparable
+}
+module std_private_string_extern_template_lists [system] { header "__string/extern_template_lists.h" }
+module std_private_string_string_fwd [system] { header "__fwd/string.h" }
+
+module std_private_string_view_string_view_fwd [system] { header "__fwd/string_view.h" }
+
+module std_private_system_error_errc [system] { header "__system_error/errc.h" }
+module std_private_system_error_error_category [system] { header "__system_error/error_category.h" }
+module std_private_system_error_error_code [system] {
+ header "__system_error/error_code.h"
+ export std_private_functional_hash
+ export std_private_functional_unary_function
+}
+module std_private_system_error_error_condition [system] {
+ header "__system_error/error_condition.h"
+ export std_private_functional_hash
+ export std_private_functional_unary_function
+}
+module std_private_system_error_system_error [system] { header "__system_error/system_error.h" }
+
+module std_private_thread_formatter [system] { header "__thread/formatter.h" }
+module std_private_thread_id [system] { header "__thread/id.h" }
+module std_private_thread_jthread [system] {
+ header "__thread/jthread.h"
+ export *
+}
+module std_private_thread_poll_with_backoff [system] { header "__thread/poll_with_backoff.h" }
+module std_private_thread_support [system] {
+ header "__thread/support.h"
+ export *
+}
+module std_private_thread_support_c11 [system] { textual header "__thread/support/c11.h" }
+module std_private_thread_support_external [system] { textual header "__thread/support/external.h" }
+module std_private_thread_support_pthread [system] { textual header "__thread/support/pthread.h" }
+module std_private_thread_support_windows [system] { textual header "__thread/support/windows.h" }
+module std_private_thread_this_thread [system] { header "__thread/this_thread.h" }
+module std_private_thread_thread [system] {
+ header "__thread/thread.h"
+ export *
+}
+module std_private_thread_timed_backoff_policy [system] { header "__thread/timed_backoff_policy.h" }
+
+module std_private_tuple_find_index [system] { header "__tuple/find_index.h" }
+module std_private_tuple_ignore [system] { header "__tuple/ignore.h" }
+module std_private_tuple_make_tuple_types [system] { header "__tuple/make_tuple_types.h" }
+module std_private_tuple_tuple_like_no_subrange [system] {
+ header "__tuple/tuple_like_no_subrange.h"
+}
+module std_private_tuple_sfinae_helpers [system] { header "__tuple/sfinae_helpers.h" }
+module std_private_tuple_tuple_element [system] { header "__tuple/tuple_element.h" }
+module std_private_tuple_tuple_fwd [system] { header "__fwd/tuple.h" }
+module std_private_get_fwd [system] {
+ header "__fwd/get.h"
+ export std_private_array_array_fwd
+ export std_private_complex_complex_fwd
+ export std_private_ranges_subrange_fwd
+ export std_private_tuple_tuple_fwd
+ export std_private_utility_pair_fwd
+ export std_private_variant_fwd
+}
+module std_private_tuple_tuple_indices [system] { header "__tuple/tuple_indices.h" }
+module std_private_tuple_tuple_like [system] {
+ header "__tuple/tuple_like.h"
+ export *
+}
+module std_private_tuple_tuple_like_ext [system] { header "__tuple/tuple_like_ext.h" }
+module std_private_tuple_tuple_size [system] {
+ header "__tuple/tuple_size.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_tuple_tuple_types [system] { header "__tuple/tuple_types.h" }
+
+module std_private_type_traits_add_const [system] { header "__type_traits/add_const.h" }
+module std_private_type_traits_add_cv [system] { header "__type_traits/add_cv.h" }
+module std_private_type_traits_add_lvalue_reference [system] {
+ header "__type_traits/add_lvalue_reference.h"
+ export std_private_type_traits_is_referenceable
+}
+module std_private_type_traits_add_pointer [system] { header "__type_traits/add_pointer.h" }
+module std_private_type_traits_add_rvalue_reference [system] { header "__type_traits/add_rvalue_reference.h" }
+module std_private_type_traits_add_volatile [system] { header "__type_traits/add_volatile.h" }
+module std_private_type_traits_aligned_storage [system] { header "__type_traits/aligned_storage.h" }
+module std_private_type_traits_aligned_union [system] { header "__type_traits/aligned_union.h" }
+module std_private_type_traits_alignment_of [system] { header "__type_traits/alignment_of.h" }
+module std_private_type_traits_can_extract_key [system] { header "__type_traits/can_extract_key.h" }
+module std_private_type_traits_common_reference [system] {
+ header "__type_traits/common_reference.h"
+ export std_private_type_traits_remove_cvref
+}
+module std_private_type_traits_common_type [system] {
+ header "__type_traits/common_type.h"
+ export std_private_type_traits_type_identity
+ export std_private_utility_declval
+ export std_private_utility_empty
+}
+module std_private_type_traits_conditional [system] { header "__type_traits/conditional.h" }
+module std_private_type_traits_conjunction [system] { header "__type_traits/conjunction.h" }
+module std_private_type_traits_copy_cv [system] { header "__type_traits/copy_cv.h" }
+module std_private_type_traits_copy_cvref [system] { header "__type_traits/copy_cvref.h" }
+module std_private_type_traits_datasizeof [system] { header "__type_traits/datasizeof.h" }
+module std_private_type_traits_decay [system] {
+ header "__type_traits/decay.h"
+ export std_private_type_traits_add_pointer
+}
+module std_private_type_traits_dependent_type [system] { header "__type_traits/dependent_type.h" }
+module std_private_type_traits_desugars_to [system] { header "__type_traits/desugars_to.h" }
+module std_private_type_traits_disjunction [system] { header "__type_traits/disjunction.h" }
+module std_private_type_traits_enable_if [system] { header "__type_traits/enable_if.h" }
+module std_private_type_traits_extent [system] { header "__type_traits/extent.h" }
+module std_private_type_traits_has_unique_object_representation [system] { header "__type_traits/has_unique_object_representation.h" }
+module std_private_type_traits_has_virtual_destructor [system] { header "__type_traits/has_virtual_destructor.h" }
+module std_private_type_traits_integral_constant [system] { header "__type_traits/integral_constant.h" }
+module std_private_type_traits_invoke [system] {
+ header "__type_traits/invoke.h"
+ export std_private_type_traits_conditional
+ export std_private_type_traits_decay
+ export std_private_type_traits_decay
+ export std_private_type_traits_enable_if
+ export std_private_type_traits_is_base_of
+ export std_private_type_traits_is_core_convertible
+ export std_private_type_traits_is_reference_wrapper
+ export std_private_type_traits_is_same
+ export std_private_type_traits_is_void
+ export std_private_type_traits_nat
+ export std_private_type_traits_remove_cv
+}
+module std_private_type_traits_is_abstract [system] { header "__type_traits/is_abstract.h" }
+module std_private_type_traits_is_aggregate [system] { header "__type_traits/is_aggregate.h" }
+module std_private_type_traits_is_allocator [system] { header "__type_traits/is_allocator.h" }
+module std_private_type_traits_is_always_bitcastable [system] { header "__type_traits/is_always_bitcastable.h" }
+module std_private_type_traits_is_arithmetic [system] {
+ header "__type_traits/is_arithmetic.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_array [system] {
+ header "__type_traits/is_array.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_assignable [system] { header "__type_traits/is_assignable.h" }
+module std_private_type_traits_is_base_of [system] { header "__type_traits/is_base_of.h" }
+module std_private_type_traits_is_bounded_array [system] { header "__type_traits/is_bounded_array.h" }
+module std_private_type_traits_is_callable [system] {
+ header "__type_traits/is_callable.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_char_like_type [system] { header "__type_traits/is_char_like_type.h" }
+module std_private_type_traits_is_class [system] { header "__type_traits/is_class.h" }
+module std_private_type_traits_is_compound [system] { header "__type_traits/is_compound.h" }
+module std_private_type_traits_is_const [system] { header "__type_traits/is_const.h" }
+module std_private_type_traits_is_constant_evaluated [system] { header "__type_traits/is_constant_evaluated.h" }
+module std_private_type_traits_is_constructible [system] { header "__type_traits/is_constructible.h" }
+module std_private_type_traits_is_convertible [system] {
+ header "__type_traits/is_convertible.h"
+ export std_private_type_traits_is_array
+}
+module std_private_type_traits_is_copy_assignable [system] { header "__type_traits/is_copy_assignable.h" }
+module std_private_type_traits_is_copy_constructible [system] { header "__type_traits/is_copy_constructible.h" }
+module std_private_type_traits_is_core_convertible [system] {
+ header "__type_traits/is_core_convertible.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_destructible [system] { header "__type_traits/is_destructible.h" }
+module std_private_type_traits_is_empty [system] { header "__type_traits/is_empty.h" }
+module std_private_type_traits_is_enum [system] {
+ header "__type_traits/is_enum.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_equality_comparable [system] {
+ header "__type_traits/is_equality_comparable.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_execution_policy [system] {
+ header "__type_traits/is_execution_policy.h"
+ export std_private_type_traits_remove_cvref
+}
+module std_private_type_traits_is_final [system] { header "__type_traits/is_final.h" }
+module std_private_type_traits_is_floating_point [system] { header "__type_traits/is_floating_point.h" }
+module std_private_type_traits_is_function [system] { header "__type_traits/is_function.h" }
+module std_private_type_traits_is_fundamental [system] { header "__type_traits/is_fundamental.h" }
+module std_private_type_traits_is_implicitly_default_constructible [system] {
+ header "__type_traits/is_implicitly_default_constructible.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_integral [system] {
+ header "__type_traits/is_integral.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_literal_type [system] { header "__type_traits/is_literal_type.h" }
+module std_private_type_traits_is_member_pointer [system] { header "__type_traits/is_member_pointer.h" }
+module std_private_type_traits_is_nothrow_assignable [system] { header "__type_traits/is_nothrow_assignable.h" }
+module std_private_type_traits_is_nothrow_constructible [system] {
+ header "__type_traits/is_nothrow_constructible.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_nothrow_convertible [system] { header "__type_traits/is_nothrow_convertible.h" }
+module std_private_type_traits_is_nothrow_destructible [system] {
+ header "__type_traits/is_nothrow_destructible.h"
+ export std_private_type_traits_is_destructible
+}
+module std_private_type_traits_is_null_pointer [system] {
+ header "__type_traits/is_null_pointer.h"
+ export std_cstddef
+}
+module std_private_type_traits_is_object [system] {
+ header "__type_traits/is_object.h"
+ export std_private_type_traits_is_scalar
+}
+module std_private_type_traits_is_pod [system] { header "__type_traits/is_pod.h" }
+module std_private_type_traits_is_pointer [system] { header "__type_traits/is_pointer.h" }
+module std_private_type_traits_is_polymorphic [system] { header "__type_traits/is_polymorphic.h" }
+module std_private_type_traits_is_primary_template [system] {
+ header "__type_traits/is_primary_template.h"
+ export std_private_type_traits_enable_if
+}
+module std_private_type_traits_is_reference [system] {
+ header "__type_traits/is_reference.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_reference_wrapper [system] { header "__type_traits/is_reference_wrapper.h" }
+module std_private_type_traits_is_referenceable [system] { header "__type_traits/is_referenceable.h" }
+module std_private_type_traits_is_same [system] {
+ header "__type_traits/is_same.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_scalar [system] {
+ header "__type_traits/is_scalar.h"
+ export std_private_type_traits_is_null_pointer
+}
+module std_private_type_traits_is_signed [system] { header "__type_traits/is_signed.h" }
+module std_private_type_traits_is_signed_integer [system] { header "__type_traits/is_signed_integer.h" }
+module std_private_type_traits_is_specialization [system] { header "__type_traits/is_specialization.h" }
+module std_private_type_traits_is_standard_layout [system] { header "__type_traits/is_standard_layout.h" }
+module std_private_type_traits_is_swappable [system] {
+ header "__type_traits/is_swappable.h"
+ export std_private_type_traits_is_move_constructible
+}
+module std_private_type_traits_is_trivial [system] { header "__type_traits/is_trivial.h" }
+module std_private_type_traits_is_trivially_assignable [system] { header "__type_traits/is_trivially_assignable.h" }
+module std_private_type_traits_is_trivially_constructible [system] { header "__type_traits/is_trivially_constructible.h" }
+module std_private_type_traits_is_trivially_copyable [system] {
+ header "__type_traits/is_trivially_copyable.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_trivially_destructible [system] { header "__type_traits/is_trivially_destructible.h" }
+module std_private_type_traits_is_trivially_lexicographically_comparable [system] { header "__type_traits/is_trivially_lexicographically_comparable.h" }
+module std_private_type_traits_is_trivially_relocatable [system] { header "__type_traits/is_trivially_relocatable.h" }
+module std_private_type_traits_is_unbounded_array [system] { header "__type_traits/is_unbounded_array.h" }
+module std_private_type_traits_is_union [system] { header "__type_traits/is_union.h" }
+module std_private_type_traits_is_unsigned [system] { header "__type_traits/is_unsigned.h" }
+module std_private_type_traits_is_unsigned_integer [system] { header "__type_traits/is_unsigned_integer.h" }
+module std_private_type_traits_is_valid_expansion [system] { header "__type_traits/is_valid_expansion.h" }
+module std_private_type_traits_is_void [system] {
+ header "__type_traits/is_void.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_type_traits_is_volatile [system] { header "__type_traits/is_volatile.h" }
+module std_private_type_traits_lazy [system] { header "__type_traits/lazy.h" }
+module std_private_type_traits_make_32_64_or_128_bit [system] { header "__type_traits/make_32_64_or_128_bit.h" }
+module std_private_type_traits_make_const_lvalue_ref [system] { header "__type_traits/make_const_lvalue_ref.h" }
+module std_private_type_traits_make_signed [system] { header "__type_traits/make_signed.h" }
+module std_private_type_traits_make_unsigned [system] {
+ header "__type_traits/make_unsigned.h"
+ export std_private_type_traits_is_unsigned
+}
+module std_private_type_traits_maybe_const [system] { header "__type_traits/maybe_const.h" }
+module std_private_type_traits_nat [system] { header "__type_traits/nat.h" }
+module std_private_type_traits_negation [system] { header "__type_traits/negation.h" }
+module std_private_type_traits_promote [system] { header "__type_traits/promote.h" }
+module std_private_type_traits_rank [system] { header "__type_traits/rank.h" }
+module std_private_type_traits_remove_all_extents [system] { header "__type_traits/remove_all_extents.h" }
+module std_private_type_traits_remove_const [system] { header "__type_traits/remove_const.h" }
+module std_private_type_traits_remove_const_ref [system] { header "__type_traits/remove_const_ref.h" }
+module std_private_type_traits_remove_cv [system] {
+ header "__type_traits/remove_cv.h"
+ export std_private_type_traits_remove_const
+ export std_private_type_traits_remove_volatile
+}
+module std_private_type_traits_remove_cvref [system] { header "__type_traits/remove_cvref.h" }
+module std_private_type_traits_remove_extent [system] { header "__type_traits/remove_extent.h" }
+module std_private_type_traits_remove_pointer [system] { header "__type_traits/remove_pointer.h" }
+module std_private_type_traits_remove_reference [system] { header "__type_traits/remove_reference.h" }
+module std_private_type_traits_remove_volatile [system] { header "__type_traits/remove_volatile.h" }
+module std_private_type_traits_result_of [system] { header "__type_traits/result_of.h" }
+module std_private_type_traits_strip_signature [system] { header "__type_traits/strip_signature.h" }
+module std_private_type_traits_type_identity [system] { header "__type_traits/type_identity.h" }
+module std_private_type_traits_type_list [system] { header "__type_traits/type_list.h" }
+module std_private_type_traits_underlying_type [system] {
+ header "__type_traits/underlying_type.h"
+ export std_private_type_traits_is_enum
+}
+module std_private_type_traits_unwrap_ref [system] { header "__type_traits/unwrap_ref.h" }
+module std_private_type_traits_void_t [system] { header "__type_traits/void_t.h" }
+
+module std_private_utility_as_const [system] { header "__utility/as_const.h" }
+module std_private_utility_as_lvalue [system] { header "__utility/as_lvalue.h" }
+module std_private_utility_auto_cast [system] {
+ header "__utility/auto_cast.h"
+ export std_private_type_traits_decay
+}
+module std_private_utility_cmp [system] {
+ header "__utility/cmp.h"
+ export std_private_type_traits_make_unsigned
+}
+module std_private_utility_convert_to_integral [system] { header "__utility/convert_to_integral.h" }
+module std_private_utility_declval [system] { header "__utility/declval.h" }
+module std_private_utility_empty [system] { header "__utility/empty.h" }
+module std_private_utility_exception_guard [system] { header "__utility/exception_guard.h" }
+module std_private_utility_exchange [system] { header "__utility/exchange.h" }
+module std_private_utility_forward [system] { header "__utility/forward.h" }
+module std_private_utility_forward_like [system] { header "__utility/forward_like.h" }
+module std_private_utility_in_place [system] {
+ header "__utility/in_place.h"
+ export std_private_type_traits_integral_constant
+}
+module std_private_utility_integer_sequence [system] { header "__utility/integer_sequence.h" }
+module std_private_utility_is_pointer_in_range [system] { header "__utility/is_pointer_in_range.h" }
+module std_private_utility_is_valid_range [system] { header "__utility/is_valid_range.h" }
+module std_private_utility_move [system] {
+ header "__utility/move.h"
+ export std_private_type_traits_is_copy_constructible
+ export std_private_type_traits_is_nothrow_move_constructible
+ export std_private_type_traits_remove_reference
+}
+module std_private_utility_no_destroy [system] { header "__utility/no_destroy.h" }
+module std_private_utility_pair [system] {
+ header "__utility/pair.h"
+ export std_private_ranges_subrange_fwd
+ export std_private_tuple_pair_like
+ export std_private_type_traits_is_assignable
+ export std_private_type_traits_is_constructible
+ export std_private_type_traits_is_convertible
+ export std_private_type_traits_is_copy_assignable
+ export std_private_type_traits_is_move_assignable
+ export std_private_type_traits_is_nothrow_copy_constructible
+ export std_private_type_traits_is_nothrow_default_constructible
+ export std_private_type_traits_is_nothrow_move_assignable
+ export std_private_utility_pair_fwd
+}
+module std_private_utility_pair_fwd [system] { header "__fwd/pair.h" }
+module std_private_utility_piecewise_construct [system] { header "__utility/piecewise_construct.h" }
+module std_private_utility_priority_tag [system] { header "__utility/priority_tag.h" }
+module std_private_utility_private_constructor_tag [system] { header "__utility/private_constructor_tag.h" }
+module std_private_utility_rel_ops [system] { header "__utility/rel_ops.h" }
+module std_private_utility_small_buffer [system] { header "__utility/small_buffer.h" }
+module std_private_utility_swap [system] {
+ header "__utility/swap.h"
+ export std_private_type_traits_is_swappable
+}
+module std_private_utility_to_underlying [system] { header "__utility/to_underlying.h" }
+module std_private_utility_unreachable [system] { header "__utility/unreachable.h" }
+
+module std_private_variant_monostate [system] { header "__variant/monostate.h" }
+module std_private_variant_fwd [system] { header "__fwd/variant.h" }
+
+module std_private_vector_fwd [system] { header "__fwd/vector.h" }
diff --git a/libcxx/include/optional b/libcxx/include/optional
index 4e44ef990f5d29..7578833685ec1f 100644
--- a/libcxx/include/optional
+++ b/libcxx/include/optional
@@ -287,7 +287,7 @@ struct __optional_destruct_base<_Tp, false> {
static_assert(is_object_v<value_type>, "instantiation of optional with a non-object type is undefined behavior");
union {
char __null_state_;
- remove_cv_t<value_type> __val_;
+ value_type __val_;
};
bool __engaged_;
@@ -323,7 +323,7 @@ struct __optional_destruct_base<_Tp, true> {
static_assert(is_object_v<value_type>, "instantiation of optional with a non-object type is undefined behavior");
union {
char __null_state_;
- remove_cv_t<value_type> __val_;
+ value_type __val_;
};
bool __engaged_;
@@ -377,7 +377,7 @@ struct __optional_storage_base : __optional_destruct_base<_Tp> {
_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __assign_from(_That&& __opt) {
if (this->__engaged_ == __opt.has_value()) {
if (this->__engaged_)
- static_cast<_Tp&>(this->__val_) = std::forward<_That>(__opt).__get();
+ this->__val_ = std::forward<_That>(__opt).__get();
} else {
if (this->__engaged_)
this->reset();
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/construct_at.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/construct_at.pass.cpp
index 272441ebedc2f2..13442df9db3ae5 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/construct_at.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/construct_at.pass.cpp
@@ -80,6 +80,21 @@ constexpr bool test()
a.deallocate(p, 2);
}
+ {
+ std::allocator<Counted> a;
+ Counted const* p = a.allocate(2);
+ int count = 0;
+ std::construct_at(p, count);
+ assert(count == 1);
+ std::construct_at(p+1, count);
+ assert(count == 2);
+ (p+1)->~Counted();
+ assert(count == 1);
+ p->~Counted();
+ assert(count == 0);
+ a.deallocate(const_cast<Counted*>(p), 2);
+ }
+
return true;
}
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/ranges_construct_at.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/ranges_construct_at.pass.cpp
index f66bf0fd647778..396fed7cc3e49d 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/ranges_construct_at.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.construct/ranges_construct_at.pass.cpp
@@ -99,6 +99,16 @@ constexpr bool test() {
alloc.deallocate(out, 2);
}
+ // Works with const pointers.
+ {
+ int x = 1;
+ const int* ptr = &x;
+
+ const int* result = std::ranges::construct_at(ptr, 42);
+ assert(result == ptr);
+ assert(x == 42);
+ }
+
return true;
}
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ranges_uninitialized_default_construct.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ranges_uninitialized_default_construct.pass.cpp
index ef969190c63148..4581f1c909e381 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ranges_uninitialized_default_construct.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ranges_uninitialized_default_construct.pass.cpp
@@ -163,5 +163,30 @@ int main(int, char**) {
}
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators, (iter, sentinel) overload.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+
+ std::ranges::uninitialized_default_construct(buf.cbegin(), buf.cend());
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
+ // Works with const iterators, (range) overload.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+ auto range = std::ranges::subrange(buf.cbegin(), buf.cend());
+
+ std::ranges::uninitialized_default_construct(range);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
return 0;
}
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ranges_uninitialized_default_construct_n.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ranges_uninitialized_default_construct_n.pass.cpp
index 40fbf226959098..9bebe4b52a8cc9 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ranges_uninitialized_default_construct_n.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.default/ranges_uninitialized_default_construct_n.pass.cpp
@@ -75,5 +75,17 @@ int main(int, char**) {
}
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+
+ std::ranges::uninitialized_default_construct_n(buf.cbegin(), N);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
return 0;
}
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ranges_uninitialized_value_construct.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ranges_uninitialized_value_construct.pass.cpp
index 6bab25ca38475b..ad74b82dce1f2b 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ranges_uninitialized_value_construct.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ranges_uninitialized_value_construct.pass.cpp
@@ -183,5 +183,30 @@ int main(int, char**) {
}
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators, (iter, sentinel) overload.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+
+ std::ranges::uninitialized_value_construct(buf.cbegin(), buf.cend());
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
+ // Works with const iterators, (range) overload.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+
+ auto range = std::ranges::subrange(buf.cbegin(), buf.cend());
+ std::ranges::uninitialized_value_construct(range);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
return 0;
}
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ranges_uninitialized_value_construct_n.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ranges_uninitialized_value_construct_n.pass.cpp
index 4742aefcdb5ada..8f315ce0076d41 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ranges_uninitialized_value_construct_n.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.construct.value/ranges_uninitialized_value_construct_n.pass.cpp
@@ -94,5 +94,17 @@ int main(int, char**) {
}
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+
+ std::ranges::uninitialized_value_construct_n(buf.cbegin(), N);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
return 0;
}
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ranges_uninitialized_copy.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ranges_uninitialized_copy.pass.cpp
index 52ba70b009baba..92dc380728e242 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ranges_uninitialized_copy.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ranges_uninitialized_copy.pass.cpp
@@ -278,6 +278,39 @@ int main(int, char**) {
Counted::reset();
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators, (iter, sentinel) overload.
+ {
+ constexpr int N = 5;
+ Counted in[N] = {Counted(1), Counted(2), Counted(3), Counted(4), Counted(5)};
+ Buffer<Counted, N> out;
+ Counted::reset();
+
+ std::ranges::uninitialized_copy(in, in + N, out.cbegin(), out.cend());
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::equal(in, in + N, out.begin(), out.end()));
+
+ std::destroy(out.begin(), out.end());
+ }
+ Counted::reset();
+
+ // Works with const iterators, (range) overload.
+ {
+ constexpr int N = 5;
+ Counted in[N] = {Counted(1), Counted(2), Counted(3), Counted(4), Counted(5)};
+ Buffer<Counted, N> out;
+ Counted::reset();
+
+ std::ranges::subrange out_range(out.cbegin(), out.cend());
+ std::ranges::uninitialized_copy(in, out_range);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::equal(in, in + N, out.begin(), out.end()));
+
+ std::destroy(out.begin(), out.end());
+ }
+ Counted::reset();
+
// Conversions, (iter, sentinel) overload.
{
constexpr int N = 3;
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ranges_uninitialized_copy_n.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ranges_uninitialized_copy_n.pass.cpp
index 84fba1aa792932..80082eb3b98e6f 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ranges_uninitialized_copy_n.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.copy/ranges_uninitialized_copy_n.pass.cpp
@@ -104,6 +104,22 @@ int main(int, char**) {
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators.
+ {
+ constexpr int N = 5;
+ Counted in[N] = {Counted(1), Counted(2), Counted(3), Counted(4), Counted(5)};
+ Buffer<Counted, N> out;
+ Counted::reset();
+
+ std::ranges::uninitialized_copy_n(in, N, out.cbegin(), out.cend());
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::equal(in, in + N, out.begin(), out.end()));
+
+ std::destroy(out.begin(), out.end());
+ }
+ Counted::reset();
+
// Conversions.
{
constexpr int N = 3;
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/ranges_uninitialized_fill_n.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/ranges_uninitialized_fill_n.pass.cpp
index 0b35c1114d87c5..0e8846e8c7c8ff 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/ranges_uninitialized_fill_n.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill.n/ranges_uninitialized_fill_n.pass.cpp
@@ -101,5 +101,19 @@ int main(int, char**) {
}
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+
+ std::ranges::uninitialized_fill_n(buf.cbegin(), N, x);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::all_of(buf.begin(), buf.end(), pred));
+
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
return 0;
}
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/ranges_uninitialized_fill.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/ranges_uninitialized_fill.pass.cpp
index 6f75fc13a1c397..482515ec9483dd 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/ranges_uninitialized_fill.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.fill/ranges_uninitialized_fill.pass.cpp
@@ -198,5 +198,34 @@ int main(int, char**) {
}
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators, (iter, sentinel) overload.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+
+ std::ranges::uninitialized_fill(buf.cbegin(), buf.cend(), x);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::all_of(buf.begin(), buf.end(), pred));
+
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
+ // Works with const iterators, (range) overload.
+ {
+ constexpr int N = 5;
+ Buffer<Counted, N> buf;
+
+ auto range = std::ranges::subrange(buf.cbegin(), buf.cend());
+ std::ranges::uninitialized_fill(range, x);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::all_of(buf.begin(), buf.end(), pred));
+
+ std::destroy(buf.begin(), buf.end());
+ Counted::reset();
+ }
+
return 0;
}
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ranges_uninitialized_move.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ranges_uninitialized_move.pass.cpp
index c6b38b4fea8644..56dd25c66e1994 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ranges_uninitialized_move.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ranges_uninitialized_move.pass.cpp
@@ -282,6 +282,39 @@ int main(int, char**) {
Counted::reset();
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators, (iter, sentinel) overload.
+ {
+ constexpr int N = 5;
+ Counted in[N] = {Counted(1), Counted(2), Counted(3), Counted(4), Counted(5)};
+ Buffer<Counted, N> out;
+ Counted::reset();
+
+ std::ranges::uninitialized_move(in, in + N, out.cbegin(), out.cend());
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::equal(in, in + N, out.begin(), out.end()));
+
+ std::destroy(out.begin(), out.end());
+ }
+ Counted::reset();
+
+ // Works with const iterators, (range) overload.
+ {
+ constexpr int N = 5;
+ Counted in[N] = {Counted(1), Counted(2), Counted(3), Counted(4), Counted(5)};
+ Buffer<Counted, N> out;
+ Counted::reset();
+
+ std::ranges::subrange out_range (out.cbegin(), out.cend());
+ std::ranges::uninitialized_move(in, out_range);
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::equal(in, in + N, out.begin(), out.end()));
+
+ std::destroy(out.begin(), out.end());
+ }
+ Counted::reset();
+
// Conversions, (iter, sentinel) overload.
{
constexpr int N = 3;
diff --git a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ranges_uninitialized_move_n.pass.cpp b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ranges_uninitialized_move_n.pass.cpp
index cac2acc5932b33..162b4a48537ff3 100644
--- a/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ranges_uninitialized_move_n.pass.cpp
+++ b/libcxx/test/std/utilities/memory/specialized.algorithms/uninitialized.move/ranges_uninitialized_move_n.pass.cpp
@@ -105,6 +105,22 @@ int main(int, char**) {
#endif // TEST_HAS_NO_EXCEPTIONS
+ // Works with const iterators.
+ {
+ constexpr int N = 5;
+ Counted in[N] = {Counted(1), Counted(2), Counted(3), Counted(4), Counted(5)};
+ Buffer<Counted, N> out;
+ Counted::reset();
+
+ std::ranges::uninitialized_move_n(in, N, out.cbegin(), out.cend());
+ assert(Counted::current_objects == N);
+ assert(Counted::total_objects == N);
+ assert(std::equal(in, in + N, out.begin(), out.end()));
+
+ std::destroy(out.begin(), out.end());
+ }
+ Counted::reset();
+
// Conversions.
{
constexpr int N = 3;
diff --git a/llvm/utils/gn/secondary/libcxx/include/BUILD.gn b/llvm/utils/gn/secondary/libcxx/include/BUILD.gn
index d850a7f20952d9..3e165c3d6f634e 100644
--- a/llvm/utils/gn/secondary/libcxx/include/BUILD.gn
+++ b/llvm/utils/gn/secondary/libcxx/include/BUILD.gn
@@ -632,6 +632,7 @@ if (current_toolchain == default_toolchain) {
"__memory/unique_temporary_buffer.h",
"__memory/uses_allocator.h",
"__memory/uses_allocator_construction.h",
+ "__memory/voidify.h",
"__memory_resource/memory_resource.h",
"__memory_resource/monotonic_buffer_resource.h",
"__memory_resource/polymorphic_allocator.h",
More information about the libcxx-commits
mailing list