aboutsummaryrefslogtreecommitdiff
path: root/src/memory_pool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/memory_pool.cpp')
-rw-r--r--src/memory_pool.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/memory_pool.cpp b/src/memory_pool.cpp
index 1311b2c..03429c2 100644
--- a/src/memory_pool.cpp
+++ b/src/memory_pool.cpp
@@ -18,9 +18,7 @@
#include <fruit/impl/data_structures/memory_pool.h>
-using namespace fruit::impl;
-
-void MemoryPool::destroy() {
+void fruit::impl::MemoryPool::destroy() {
for (void* p : allocated_chunks) {
operator delete(p);
}