diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-10-15 09:23:57 +0800 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-11-01 14:05:14 +0800 |
| commit | 8b2297f5cafcd413fdf7fbd774c464496717008d (patch) | |
| tree | a87c07452e986646e514d1963c72418f65dc09d3 /src/memory.hh | |
| parent | 9ec175f2f8880a63e169506cab88c41e7637bc40 (diff) | |
Regex: Introduce a Regex memory domain to track usage separately
Diffstat (limited to 'src/memory.hh')
| -rw-r--r-- | src/memory.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/memory.hh b/src/memory.hh index b25e687d..062081d1 100644 --- a/src/memory.hh +++ b/src/memory.hh @@ -36,6 +36,7 @@ enum class MemoryDomain Remote, Events, Completion, + Regex, Count }; @@ -66,6 +67,7 @@ inline const char* domain_name(MemoryDomain domain) case MemoryDomain::Remote: return "Remote"; case MemoryDomain::Events: return "Events"; case MemoryDomain::Completion: return "Completion"; + case MemoryDomain::Regex: return "Regex"; case MemoryDomain::Count: break; } kak_assert(false); |
