diff options
author | Dmitry Stogov <dmitry@zend.com> | 2015-08-26 18:29:42 +0300 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2015-08-26 18:29:42 +0300 |
commit | e549ebdb231208fbf1990fa3565efabc2de4d7e0 (patch) | |
tree | 8d3ee3d3f01d754a2c2cbb235036311e9f2bde7f /Zend/zend.h | |
parent | 942747cc3ec4d63a5aaaf96f0fffcbb9fedfa192 (diff) | |
download | php-git-e549ebdb231208fbf1990fa3565efabc2de4d7e0.tar.gz |
Mark parse error functions as cold
Diffstat (limited to 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index ee8d5b0302..8062d75c76 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -289,7 +289,7 @@ ZEND_API ZEND_COLD void zend_throw_error(zend_class_entry *exception_ce, const c ZEND_API ZEND_COLD void zend_type_error(const char *format, ...); ZEND_API ZEND_COLD void zend_internal_type_error(zend_bool throw_exception, const char *format, ...); -void zenderror(const char *error); +ZEND_COLD void zenderror(const char *error); /* The following #define is used for code duality in PHP for Engine 1 & 2 */ #define ZEND_STANDARD_CLASS_DEF_PTR zend_standard_class_def |