summaryrefslogtreecommitdiff
path: root/deimos/core/allocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'deimos/core/allocator.h')
-rw-r--r--deimos/core/allocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/deimos/core/allocator.h b/deimos/core/allocator.h
index e65f316..26374bd 100644
--- a/deimos/core/allocator.h
+++ b/deimos/core/allocator.h
@@ -29,7 +29,7 @@ class Allocator
const MemoryScope m_scope;
public:
- constexpr explicit Allocator(IAllocator* allocator, MemoryScope scope) :
+ constexpr Allocator(IAllocator* allocator, MemoryScope scope) :
m_allocator{allocator}, m_scope{scope}
{}