[libcxx-commits] [libcxx] ebb6f3c - [libc++] Adds missing includes.
Mark de Wever via libcxx-commits
libcxx-commits at lists.llvm.org
Sun May 29 02:12:50 PDT 2022
Author: Mark de Wever
Date: 2022-05-29T11:11:32+02:00
New Revision: ebb6f3ce370c69fad51859ebe22fd82f25749161
URL: https://github.com/llvm/llvm-project/commit/ebb6f3ce370c69fad51859ebe22fd82f25749161
DIFF: https://github.com/llvm/llvm-project/commit/ebb6f3ce370c69fad51859ebe22fd82f25749161.diff
LOG: [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)
Added:
Modified:
libcxx/include/__type_traits/is_unsigned.h
Removed:
################################################################################
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
More information about the libcxx-commits
mailing list