From ebb6f3ce370c69fad51859ebe22fd82f25749161 Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Sun, 29 May 2022 11:11:32 +0200 Subject: [PATCH] [libc++] Adds missing includes. This fixes the broken Apple builds. This has been tested in D121530 (https://buildkite.com/llvm-project/libcxx-ci/builds/11113) --- libcxx/include/__type_traits/is_unsigned.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcxx/include/__type_traits/is_unsigned.h b/libcxx/include/__type_traits/is_unsigned.h index 3c25205e6417..b0522812aad3 100644 --- a/libcxx/include/__type_traits/is_unsigned.h +++ b/libcxx/include/__type_traits/is_unsigned.h @@ -11,6 +11,8 @@ #include <__config> #include <__type_traits/integral_constant.h> +#include <__type_traits/is_arithmetic.h> +#include <__type_traits/is_integral.h> #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header