From 00aede6e577f024b50524c7c9cce87ae2a4f325b Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 28 Oct 2014 19:44:00 +0000 Subject: [PATCH] mark InternedString move constructor noexcept --- src/interned_string.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;