summaryrefslogtreecommitdiff
path: root/deimos/core/allocator.h
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-20 01:22:04 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2024-04-21 00:49:12 +0200
commitc147cb2a949d2a5c75804613c45e46c1a2ec8ab1 (patch)
treeb455973c23b4475244fcc5d8b54077a71a1c5126 /deimos/core/allocator.h
parent10ec28c5de9442fe93635ae76ca397d138f9e93c (diff)
Temporary allocator
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}
{}