Skip to content

Commit f62e917

Browse files
wip
1 parent 611a3c2 commit f62e917

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/util/query_heap.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ class QueryHeap
213213
return weight > other.weight;
214214
}
215215
};
216-
using HeapContainerAllocator = boost::fast_pool_allocator<HeapData>;
216+
using HeapContainerAllocator = std::allocator<HeapData>; // boost::fast_pool_allocator<HeapData>;
217217
using HeapContainer = boost::heap::d_ary_heap<HeapData,
218218
boost::heap::arity<4>,
219219
boost::heap::mutable_<true>,

0 commit comments

Comments
 (0)