diff options
author | Dmitry Stogov <dmitry@zend.com> | 2016-12-12 11:19:04 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2016-12-12 11:19:04 +0300 |
commit | 2d52d787412e6a85791c9c700edf999a27b1d6a6 (patch) | |
tree | d9f58e40d07a0e7e9cb6a41bd178f0fc9b86e069 | |
parent | fac95658b3201fdc7924cd3afa44a5f7afc194aa (diff) | |
download | php-git-2d52d787412e6a85791c9c700edf999a27b1d6a6.tar.gz |
Fixed compilation error
-rw-r--r-- | Zend/zend_exceptions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend_exceptions.h b/Zend/zend_exceptions.h index 71dcc8d172..e88b5e1db7 100644 --- a/Zend/zend_exceptions.h +++ b/Zend/zend_exceptions.h @@ -72,6 +72,8 @@ ZEND_API ZEND_COLD void zend_exception_error(zend_object *exception, int severit size_t zend_spprintf(char **message, size_t max_len, const char *format, ...) ZEND_ATTRIBUTE_FORMAT(printf, 3, 4); zend_string *zend_strpprintf(size_t max_len, const char *format, ...) ZEND_ATTRIBUTE_FORMAT(printf, 2, 3); +#include "zend_globals.h" + static zend_always_inline void zend_rethrow_exception(zend_execute_data *execute_data) { if (EX(opline)->opcode != ZEND_HANDLE_EXCEPTION) { |