vecmem 1.14.0
Loading...
Searching...
No Matches
polymorphic_allocator.hpp
1/* VecMem project, part of the ACTS project (R&D line)
2 *
3 * (c) 2021 CERN for the benefit of the ACTS project
4 *
5 * Mozilla Public License Version 2.0
6 */
7
8#pragma once
9
10// This header can only be used in C++17 mode. So "device compilers" that
11// can't use C++17, must not see it. Which in practically all cases should
12// "just" be a question of code organisation.
13#if __cplusplus < 201700L
14#error \
15 "This header can only be used in C++17 mode. " \
16 "Ideally it should only be used by the \"host compiler\"."
17#endif // < C++17
18
19/*
20 * The purpose of this file is to provide uniform access (on a source-code
21 * level) to the polymorphic_allocator type from the standard library. These are
22 * either in the std::pmr namespace or in the std::experimental::pmr namespace
23 * depending on the GCC version used, so we try to unify them by aliassing
24 * depending on the compiler feature flags.
25 */
26#if defined(VECMEM_HAVE_PMR_MEMORY_RESOURCE)
27#include <memory_resource>
28
29namespace vecmem {
30template <typename T>
31using polymorphic_allocator = std::pmr::polymorphic_allocator<T>;
32}
33#elif defined(VECMEM_HAVE_EXPERIMENTAL_PMR_MEMORY_RESOURCE)
34#include <experimental/memory_resource>
35
36namespace vecmem {
37template <typename T>
38using polymorphic_allocator = std::experimental::pmr::polymorphic_allocator<T>;
39}
40#else
41#error "C++17 LFTS V1 (P0220R1) component memory_resource not found!?!"
42#endif
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35