13#if __cplusplus < 201700L
15 "This header can only be used in C++17 mode. " \
16 "Ideally it should only be used by the \"host compiler\"."
26#if defined(VECMEM_HAVE_PMR_MEMORY_RESOURCE)
27#include <memory_resource>
30using memory_resource = std::pmr::memory_resource;
32#elif defined(VECMEM_HAVE_EXPERIMENTAL_PMR_MEMORY_RESOURCE)
33#include <experimental/memory_resource>
36using memory_resource = std::experimental::pmr::memory_resource;
39#error "C++17 LFTS V1 (P0220R1) component memory_resource not found!?!"
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16