//===----------------------------------------------------------------------===// // // 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___TYPE_TRAITS_MAKE_32_64_OR_128_BIT_H #define _LIBCPP___TYPE_TRAITS_MAKE_32_64_OR_128_BIT_H #include <__config> #include <__type_traits/conditional.h> #include <__type_traits/is_same.h> #include <__type_traits/is_signed.h> #include <__type_traits/is_unsigned.h> #include <__type_traits/make_unsigned.h> #include <cstdint> #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header #endif _LIBCPP_BEGIN_NAMESPACE_STD /// Helper to promote an integral to smallest 32, 64, or 128 bit representation. /// /// The restriction is the same as the integral version of to_char. __make_32_64_or_128_bit_t; // clang-format on _LIBCPP_END_NAMESPACE_STD #endif // _LIBCPP___TYPE_TRAITS_MAKE_32_64_OR_128_BIT_H