summaryrefslogtreecommitdiff
path: root/src/interned_string.hh
diff options
context:
space:
mode:
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
{