From 78690fbec20d2bea57a82259a4ec20b6467a4777 Mon Sep 17 00:00:00 2001 From: Daan Leijen Date: Tue, 22 Nov 2022 18:41:51 -0800 Subject: [PATCH] fix proteced status in stl allocator (pr #625)# --- include/mimalloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mimalloc.h b/include/mimalloc.h index d43a4419..86856900 100644 --- a/include/mimalloc.h +++ b/include/mimalloc.h @@ -506,7 +506,7 @@ template struct mi_heap_stl_allocator { void collect(bool force) { mi_heap_collect(this->heap.get(), force); } -protected: +// protected: std::shared_ptr heap; private: