diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-01-31 09:39:10 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-01-31 09:39:10 +0100 |
commit | 340c6d392720f4681a46b58cfe9a002ce5b7e8b6 (patch) | |
tree | 0c67c475cd7c42cc242adf273b2a3a948184ff50 /Zend/zend_errors.h | |
parent | abd36289e26cc0365e82373699aba4c1ffff464d (diff) | |
download | php-git-340c6d392720f4681a46b58cfe9a002ce5b7e8b6.tar.gz |
Revert "Don't silence fatal errors with @"
This reverts commit abd36289e26cc0365e82373699aba4c1ffff464d.
This wasn't ready for merging yet, there are still some test
failures.
Diffstat (limited to 'Zend/zend_errors.h')
-rw-r--r-- | Zend/zend_errors.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Zend/zend_errors.h b/Zend/zend_errors.h index ac48ef60ad..9932b1e47e 100644 --- a/Zend/zend_errors.h +++ b/Zend/zend_errors.h @@ -39,11 +39,6 @@ #define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE | E_RECOVERABLE_ERROR | E_DEPRECATED | E_USER_DEPRECATED | E_STRICT) #define E_CORE (E_CORE_ERROR | E_CORE_WARNING) -/* Fatal errors that are ignored by the silence operator */ -#define E_FATAL_ERRORS (E_ERROR | E_CORE_ERROR | E_COMPILE_ERROR | E_USER_ERROR | E_RECOVERABLE_ERROR | E_PARSE) - -#define E_HAS_ONLY_FATAL_ERRORS(mask) !((mask) & ~E_FATAL_ERRORS) - #endif /* ZEND_ERRORS_H */ /* |