summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/memory_watcher/memory_watcher.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/memory_watcher/memory_watcher.cc b/tools/memory_watcher/memory_watcher.cc
index c7d0565..d5e11db 100644
--- a/tools/memory_watcher/memory_watcher.cc
+++ b/tools/memory_watcher/memory_watcher.cc
@@ -15,10 +15,10 @@
#include "tools/memory_watcher/call_stack.h"
#include "tools/memory_watcher/preamble_patcher.h"
-static StatsCounter mem_in_use(L"MemoryInUse.Bytes");
-static StatsCounter mem_in_use_blocks(L"MemoryInUse.Blocks");
-static StatsCounter mem_in_use_allocs(L"MemoryInUse.Allocs");
-static StatsCounter mem_in_use_frees(L"MemoryInUse.Frees");
+static StatsCounter mem_in_use("MemoryInUse.Bytes");
+static StatsCounter mem_in_use_blocks("MemoryInUse.Blocks");
+static StatsCounter mem_in_use_allocs("MemoryInUse.Allocs");
+static StatsCounter mem_in_use_frees("MemoryInUse.Frees");
// ---------------------------------------------------------------------