Add missing return

This commit is contained in:
Simon Brand
2017-10-21 21:38:17 +01:00
parent ba0b0ade88
commit 697491b57e

View File

@ -910,6 +910,8 @@ public:
this->m_value.~T(); this->m_value.~T();
this->m_has_value = false; this->m_has_value = false;
} }
return *this;
} }
// TODO conditionally delete, check exception guarantee // TODO conditionally delete, check exception guarantee