From 699f3c34daf086a3e9046c73c4e3785ea44a063d Mon Sep 17 00:00:00 2001 From: Toon Schoenmakers Date: Wed, 21 Jan 2015 11:09:38 +0100 Subject: This should have noexcept in the .cpp file as well At least, clang told me it should have noexcept there --- zend/script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zend/script.cpp b/zend/script.cpp index a1b5b04..988ab1c 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) +Script::Script(const char *name, const char *phpcode, size_t size) noexcept { // we need the tsrm_ls variable TSRMLS_FETCH(); -- cgit v1.2.3