From c147cb2a949d2a5c75804613c45e46c1a2ec8ab1 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Sat, 20 Apr 2024 01:22:04 +0200 Subject: Temporary allocator --- deimos/core/allocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'deimos/core/allocator.h') 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} {} -- cgit