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.h | |
parent | e1229e05aba7554363b2aa9874bd383b5923ee8b (diff) |
Random work
Diffstat (limited to 'deimos/core/allocator.h')
-rw-r--r-- | deimos/core/allocator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deimos/core/allocator.h b/deimos/core/allocator.h index 911f8e7..967bbb1 100644 --- a/deimos/core/allocator.h +++ b/deimos/core/allocator.h @@ -138,7 +138,7 @@ public: Allocator* system{};
- virtual Allocator* CreateChild(Allocator* parent, const char* description) = 0;
+ virtual Allocator* CreateChild(Allocator* parent, gsl::czstring description) = 0;
virtual void DestroyChild(Allocator*) = 0;
};
|