Core/HandledObject: Make move constructor/assignation operator noexception

This commit is contained in:
Lynix
2018-04-22 12:33:36 +02:00
parent 2147156df9
commit 8ab1462402
5 changed files with 11 additions and 10 deletions

View File

@@ -49,8 +49,8 @@ namespace Nz
static const ObjectHandle InvalidHandle;
protected:
void OnObjectDestroyed();
void OnObjectMoved(T* newObject);
void OnObjectDestroyed() noexcept;
void OnObjectMoved(T* newObject) noexcept;
T* m_object;
};