diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-10-02 10:45:56 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-10-02 10:45:56 -0700 |
| commit | dde0adcb363f3a3f306c0fc9eaec511cc3b74965 (patch) | |
| tree | 9388d039a0b77211936c7264f5a3179f63ad51e6 /lib/libcxx/include/array | |
| parent | c4cd592f0e1eeff5a4056796610d97010ae4e38c (diff) | |
| parent | 7a2624c3e40e2386a4a8a775b839e1d67608ec42 (diff) | |
| download | zig-dde0adcb363f3a3f306c0fc9eaec511cc3b74965.tar.gz zig-dde0adcb363f3a3f306c0fc9eaec511cc3b74965.zip | |
Merge branch 'llvm13'
Diffstat (limited to 'lib/libcxx/include/array')
| -rw-r--r-- | lib/libcxx/include/array | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/lib/libcxx/include/array b/lib/libcxx/include/array index 9a479f7cd1..022172b86e 100644 --- a/lib/libcxx/include/array +++ b/lib/libcxx/include/array @@ -109,25 +109,22 @@ template <size_t I, class T, size_t N> const T&& get(const array<T, N>&&) noexce */ #include <__config> +#include <__debug> #include <__tuple> -#include <type_traits> -#include <utility> -#include <iterator> #include <algorithm> -#include <stdexcept> #include <cstdlib> // for _LIBCPP_UNREACHABLE +#include <iterator> +#include <stdexcept> +#include <type_traits> +#include <utility> #include <version> -#include <__debug> #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) #pragma GCC system_header #endif - - _LIBCPP_BEGIN_NAMESPACE_STD - template <class _Tp, size_t _Size> struct _LIBCPP_TEMPLATE_VIS array { @@ -520,4 +517,4 @@ to_array(_Tp(&&__arr)[_Size]) noexcept(is_nothrow_move_constructible_v<_Tp>) { _LIBCPP_END_NAMESPACE_STD -#endif // _LIBCPP_ARRAY +#endif // _LIBCPP_ARRAY |
