summaryrefslogtreecommitdiff
path: root/src/memory.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2019-03-21 20:35:22 +1100
committerMaxime Coste <mawww@kakoune.org>2019-03-21 20:35:22 +1100
commit31d67f51dd0f9b9c66fe90db8dd46c779e7764f2 (patch)
tree2ece2ca3b861fa6befc406fde766a487725c8132 /src/memory.cc
parent56611604b28b6c293b13e3637fbae65e6bea064c (diff)
Track more memory statistics
Diffstat (limited to 'src/memory.cc')
-rw-r--r--src/memory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/memory.cc b/src/memory.cc
index e2928412..38da3f60 100644
--- a/src/memory.cc
+++ b/src/memory.cc
@@ -3,6 +3,6 @@
namespace Kakoune
{
-size_t domain_allocated_bytes[(size_t)MemoryDomain::Count] = {};
+MemoryStats memory_stats[(size_t)MemoryDomain::Count] = {};
}