summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-08-28 11:18:17 +0200
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-08-28 11:18:17 +0200
commit82e9d69f3a25565273f560792cfc46ea8ff25ec3 (patch)
tree9cf1254cb11c318612a1efeb8cdad7fbda3cf279
parent66063dba8280f2e0a1d1591b804467bf712f99c6 (diff)
Update object.h
Removed _NOEXCEPT from Object::operator=() that clearly did throw an exception
-rw-r--r--include/object.h2
1 files changed, 1 insertions, 1 deletions
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;