Please use GitHub pull requests for new patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
libcxx/include/__memory/allocator.h
// -*- C++ -*- | // -*- C++ -*- | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
// | // | ||||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||||
// See https://llvm.org/LICENSE.txt for license information. | // See https://llvm.org/LICENSE.txt for license information. | ||||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
#ifndef _LIBCPP___MEMORY_ALLOCATOR_H | #ifndef _LIBCPP___MEMORY_ALLOCATOR_H | ||||
#define _LIBCPP___MEMORY_ALLOCATOR_H | #define _LIBCPP___MEMORY_ALLOCATOR_H | ||||
#include <__config> | #include <__config> | ||||
#include <__memory/addressof.h> | |||||
#include <__memory/allocate_at_least.h> | #include <__memory/allocate_at_least.h> | ||||
#include <__memory/allocator_traits.h> | #include <__memory/allocator_traits.h> | ||||
#include <__type_traits/is_constant_evaluated.h> | #include <__type_traits/is_constant_evaluated.h> | ||||
#include <__type_traits/is_same.h> | #include <__type_traits/is_same.h> | ||||
#include <__type_traits/is_void.h> | #include <__type_traits/is_void.h> | ||||
#include <__type_traits/is_volatile.h> | #include <__type_traits/is_volatile.h> | ||||
#include <__utility/forward.h> | #include <__utility/forward.h> | ||||
#include <cstddef> | #include <cstddef> | ||||
▲ Show 20 Lines • Show All 252 Lines • Show Last 20 Lines |