We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0723dc0 commit bbdac63Copy full SHA for bbdac63
include/util/query_heap.hpp
@@ -216,7 +216,10 @@ class QueryHeap
216
return weight > other.weight;
217
}
218
};
219
- using HeapContainerAllocator = boost::fast_pool_allocator<HeapData>;
+ using HeapContainerAllocator =
220
+ boost::fast_pool_allocator<HeapData,
221
+ boost::default_user_allocator_new_delete,
222
+ boost::details::pool::null_mutex>;
223
using HeapContainer = boost::heap::d_ary_heap<HeapData,
224
boost::heap::arity<4>,
225
boost::heap::mutable_<true>,
0 commit comments