diff options
author | Zeev Suraski <zeev@php.net> | 2004-02-12 10:38:14 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2004-02-12 10:38:14 +0000 |
commit | 00ed3bad290543b2145339fc3c3e7c4d81b7c32d (patch) | |
tree | a9dd9e51ed44bc3ec6ec89430ac953f45cdb9bbd /ext/reflection/php_reflection.c | |
parent | e189d89672167dee73d53ac642c2a85979249d83 (diff) | |
download | php-git-00ed3bad290543b2145339fc3c3e7c4d81b7c32d.tar.gz |
Centralize exceptions code in zend_exceptions.[ch].
Remove zend_default_classes.h (use zend_exceptions.h instead)
NOTE: This currently breaks the build, fixes to php-src and pecl coming
soon
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index d923f811ba..437b0d8314 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -22,7 +22,7 @@ /* $Id$ */ #include "zend.h" #include "zend_API.h" -#include "zend_default_classes.h" +#include "zend_exceptions.h" #include "zend_operators.h" #include "zend_constants.h" #include "zend_ini.h" |