summaryrefslogtreecommitdiff
path: root/zend/value.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zend/value.cpp')
-rw-r--r--zend/value.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zend/value.cpp b/zend/value.cpp
index 8c8cc9a..e021cc1 100644
--- a/zend/value.cpp
+++ b/zend/value.cpp
@@ -285,7 +285,7 @@ Value::Value(const Value &that)
* Move constructor
* @param value
*/
-Value::Value(Value &&that) noexcept: _val(that._val)
+Value::Value(Value &&that) _NOEXCEPT: _val(that._val)
{
// clear the other object
that._val = nullptr;
@@ -396,7 +396,7 @@ int Value::refcount() const
* @param value
* @return Value
*/
-Value &Value::operator=(Value &&value) noexcept
+Value &Value::operator=(Value &&value) _NOEXCEPT
{
// skip self assignment
if (this == &value) return *this;