diff options
author | Bob Weinand <bobwei9@hotmail.com> | 2015-07-02 01:54:08 +0200 |
---|---|---|
committer | Bob Weinand <bobwei9@hotmail.com> | 2015-07-02 02:20:58 +0200 |
commit | 007d7ac7ca6d52ba5e7a0ba7b2c582a04ddc50df (patch) | |
tree | 1a3615bd2fb103b7a0e9703fd869891613a57510 /Zend/zend_exceptions.h | |
parent | f9724b93f6592d2f77fa9165038a0ba0db3da0c6 (diff) | |
download | php-git-007d7ac7ca6d52ba5e7a0ba7b2c582a04ddc50df.tar.gz |
Use DivisionByZeroError instead of exception for %/intdiv()
Diffstat (limited to 'Zend/zend_exceptions.h')
-rw-r--r-- | Zend/zend_exceptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_exceptions.h b/Zend/zend_exceptions.h index 944fe555ce..f07bc78b88 100644 --- a/Zend/zend_exceptions.h +++ b/Zend/zend_exceptions.h @@ -27,6 +27,7 @@ BEGIN_EXTERN_C() extern ZEND_API zend_class_entry *zend_ce_throwable; +extern ZEND_API zend_class_entry *zend_ce_division_by_zero_error; ZEND_API void zend_exception_set_previous(zend_object *exception, zend_object *add_previous); ZEND_API void zend_exception_save(void); |