From 82e9d69f3a25565273f560792cfc46ea8ff25ec3 Mon Sep 17 00:00:00 2001 From: Emiel Bruijntjes Date: Fri, 28 Aug 2015 11:18:17 +0200 Subject: Update object.h Removed _NOEXCEPT from Object::operator=() that clearly did throw an exception --- include/object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/object.h b/include/object.h index f8fea74..745b7c6 100644 --- a/include/object.h +++ b/include/object.h @@ -140,7 +140,7 @@ public: * @param value * @return ForcedValue */ - Object &operator=(Value &&value) _NOEXCEPT + Object &operator=(Value &&value) { // skip self assignment if (this == &value) return *this; -- cgit v1.2.3