summaryrefslogtreecommitdiff
path: root/zend/script.cpp
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 /zend/script.cpp
parent30eff69a10898dd9b2fb10ed07ae8c68458a5ad2 (diff)
parent47855f1c68a282903a8db470697915bd419ec17c (diff)
Merge pull request #165 from atvise/redefine_noexept
Added macro wrapper for noexcept
Diffstat (limited to 'zend/script.cpp')
-rw-r--r--zend/script.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zend/script.cpp b/zend/script.cpp
index 988ab1c..9e1d8f6 100644
--- a/zend/script.cpp
+++ b/zend/script.cpp
@@ -50,7 +50,7 @@ zend_op_array *Script::compile(const char *name, const char *phpcode, size_t siz
* @param script actual PHP code
* @param size length of the string
*/
-Script::Script(const char *name, const char *phpcode, size_t size) noexcept
+Script::Script(const char *name, const char *phpcode, size_t size) _NOEXCEPT
{
// we need the tsrm_ls variable
TSRMLS_FETCH();