diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-03-28 00:02:43 +0100 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-03-28 00:02:43 +0100 |
commit | b70ed765ff6cf51aff20714e3ec4415b06898059 (patch) | |
tree | c8d0c3ab553108c4d19660039ecf7323a4640feb /deimos/core/allocator.cpp | |
parent | e1229e05aba7554363b2aa9874bd383b5923ee8b (diff) |
Random work
Diffstat (limited to 'deimos/core/allocator.cpp')
-rw-r--r-- | deimos/core/allocator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deimos/core/allocator.cpp b/deimos/core/allocator.cpp index 642afb8..1478d36 100644 --- a/deimos/core/allocator.cpp +++ b/deimos/core/allocator.cpp @@ -44,7 +44,7 @@ public: system = &m_system;
}
- Allocator* CreateChild(Allocator* parent, const char* /* description */) override
+ Allocator* CreateChild(Allocator* parent, gsl::czstring /* description */) override
{
return parent;
}
|