27 lines · c
1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef _LIBCPP___CXX03___UTILITY_SMALL_BUFFER_H10#define _LIBCPP___CXX03___UTILITY_SMALL_BUFFER_H11 12#include <__cxx03/__config>13#include <__cxx03/__memory/construct_at.h>14#include <__cxx03/__type_traits/decay.h>15#include <__cxx03/__type_traits/is_trivially_constructible.h>16#include <__cxx03/__type_traits/is_trivially_destructible.h>17#include <__cxx03/__utility/exception_guard.h>18#include <__cxx03/__utility/forward.h>19#include <__cxx03/cstddef>20#include <__cxx03/new>21 22#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)23# pragma GCC system_header24#endif25 26#endif // _LIBCPP___CXX03___UTILITY_SMALL_BUFFER_H27