summaryrefslogtreecommitdiff
path: root/include/object.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-01-26 10:12:38 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-01-26 10:12:38 +0100
commite363d36a55e74d12aeef28b2a4b1f3ba074495fd (patch)
tree29c8eee83ee64edfdf904a55399cf67f0d407078 /include/object.h
parent30eff69a10898dd9b2fb10ed07ae8c68458a5ad2 (diff)
parent47855f1c68a282903a8db470697915bd419ec17c (diff)
Merge pull request #165 from atvise/redefine_noexept
Added macro wrapper for noexcept
Diffstat (limited to 'include/object.h')
-rw-r--r--include/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/object.h b/include/object.h
index 301fa57..2eea05b 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) _NOEXCEPT
{
// skip self assignment
if (this == &value) return *this;