File allocator.h File List > common > allocator.h Go to the documentation of this file #pragma once #include <memory_resource> namespace uipc { template <typename T> using Allocator = std::pmr::polymorphic_allocator<T>; }