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 5c87b3f4..23eeab92 100644
--- a/src/interned_string.hh
+++ b/src/interned_string.hh
@@ -37,7 +37,7 @@ public:
StringRegistry::instance().acquire(m_slot);
}
- InternedString(InternedString&& str) : StringView(str)
+ InternedString(InternedString&& str) noexcept : StringView(str)
{
m_slot = str.m_slot;
str.m_slot = -1;