diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-01-18 18:49:32 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-01-18 18:49:32 +0000 |
| commit | 39689f0a1806f49c47f6fa65163dba4ae901d839 (patch) | |
| tree | 4a9e34927350f559167bcdeb612b743d2af7b145 /src/shared_string.hh | |
| parent | 9b057896d4d28360d4ff950d01cda0fdba19d2a3 (diff) | |
Add helper for overloading operator new/delete
Diffstat (limited to 'src/shared_string.hh')
| -rw-r--r-- | src/shared_string.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared_string.hh b/src/shared_string.hh index e2240cc9..8a84bf48 100644 --- a/src/shared_string.hh +++ b/src/shared_string.hh @@ -12,7 +12,7 @@ namespace Kakoune class SharedString : public StringView { public: - struct Storage + struct Storage : UseMemoryDomain<MemoryDomain::SharedString> { int refcount = 0; Vector<char, MemoryDomain::SharedString> content; |
