From 0723dc073c6b05e29d2d38fdfe558870862be19b Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Wed, 3 Jul 2024 21:51:05 +0300 Subject: [PATCH] wip --- include/util/query_heap.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/util/query_heap.hpp b/include/util/query_heap.hpp index 5796c3563..0639cb386 100644 --- a/include/util/query_heap.hpp +++ b/include/util/query_heap.hpp @@ -12,7 +12,6 @@ #include #include #include - namespace osrm::util { @@ -217,10 +216,12 @@ class QueryHeap return weight > other.weight; } }; + using HeapContainerAllocator = boost::fast_pool_allocator; using HeapContainer = boost::heap::d_ary_heap, boost::heap::mutable_, - boost::heap::compare>>; + boost::heap::compare>, + boost::heap::allocator>; using HeapHandle = typename HeapContainer::handle_type; public: