Skip to content

Commit bbdac63

Browse files
wip
1 parent 0723dc0 commit bbdac63

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

include/util/query_heap.hpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,10 @@ class QueryHeap
216216
return weight > other.weight;
217217
}
218218
};
219-
using HeapContainerAllocator = boost::fast_pool_allocator<HeapData>;
219+
using HeapContainerAllocator =
220+
boost::fast_pool_allocator<HeapData,
221+
boost::default_user_allocator_new_delete,
222+
boost::details::pool::null_mutex>;
220223
using HeapContainer = boost::heap::d_ary_heap<HeapData,
221224
boost::heap::arity<4>,
222225
boost::heap::mutable_<true>,

0 commit comments

Comments
 (0)