std::pmr::synchronized_pool_resource (3) Linux Manual Page
std::pmr::synchronized_pool_resource – std::pmr::synchronized_pool_resource Synopsis Defined in header <memory_resource> class synchronized_pool_resource : public std::pmr::memory_resource; (since C++17) The class std::pmr::synchronized_pool_resource is a general-purpose memory resource class with the following properties: * It owns the allocated memory and frees it on destruction, even if deallocate has not been called for some of the allocated blocks. * It consists…
