diff options
Diffstat (limited to 'deimos/core/allocator.cpp')
-rw-r--r-- | deimos/core/allocator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deimos/core/allocator.cpp b/deimos/core/allocator.cpp index b42861c..cd3de9e 100644 --- a/deimos/core/allocator.cpp +++ b/deimos/core/allocator.cpp @@ -8,8 +8,8 @@ namespace deimos class SystemAllocatorImpl : public IAllocator
{
public:
- gsl::owner<void*> Reallocate(
- gsl::owner<void*> old_ptr, int64_t /* old_size */, int64_t new_size,
+ void* Reallocate(
+ void* old_ptr, int64_t /* old_size */, int64_t new_size,
MemoryScope /* scope */, const SourceLocation& /* source_location */) override
{
if (old_ptr == nullptr)
|