summaryrefslogtreecommitdiff
path: root/src/interned_string.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-01-11 19:28:03 +0000
committerMaxime Coste <frrrwww@gmail.com>2015-01-11 19:28:03 +0000
commitdedb16bc73372eb45a24925590ecc8273e4efabf (patch)
treea364af5987e29e87b594f0104ded002cf0fcf32b /src/interned_string.hh
parent9adb97ea288e08bf9d098fc195aaf8c0f9a27c3e (diff)
Track some more memory
Diffstat (limited to 'src/interned_string.hh')
-rw-r--r--src/interned_string.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interned_string.hh b/src/interned_string.hh
index 25c84a85..8357ba85 100644
--- a/src/interned_string.hh
+++ b/src/interned_string.hh
@@ -20,7 +20,7 @@ private:
void acquire(size_t slot);
void release(size_t slot) noexcept;
- UnorderedMap<StringView, size_t> m_slot_map;
+ UnorderedMap<StringView, size_t, MemoryDomain::InternedString> m_slot_map;
Vector<size_t, MemoryDomain::InternedString> m_free_slots;
struct DataAndRefCount
{