From 3691f90e23305ed49eb19ab043fe0e8e355d0996 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Thu, 11 Jul 2024 20:11:11 +0200 Subject: [PATCH] wip --- src/util/pool_allocator.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/util/pool_allocator.cpp diff --git a/src/util/pool_allocator.cpp b/src/util/pool_allocator.cpp new file mode 100644 index 000000000..5a4cd5b70 --- /dev/null +++ b/src/util/pool_allocator.cpp @@ -0,0 +1,7 @@ +#include "util/pool_allocator.hpp" + +namespace osrm::util +{ + std::vector Cleanup::allocated_blocks_; + std::mutex Cleanup::mutex_; +} // namespace osrm::util \ No newline at end of file