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 611a3c2 commit f62e917Copy full SHA for f62e917
include/util/query_heap.hpp
@@ -213,7 +213,7 @@ class QueryHeap
213
return weight > other.weight;
214
}
215
};
216
- using HeapContainerAllocator = boost::fast_pool_allocator<HeapData>;
+ using HeapContainerAllocator = std::allocator<HeapData>; // boost::fast_pool_allocator<HeapData>;
217
using HeapContainer = boost::heap::d_ary_heap<HeapData,
218
boost::heap::arity<4>,
219
boost::heap::mutable_<true>,
0 commit comments