diff options
author | Marcus Boerger <helly@php.net> | 2004-07-27 16:21:56 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-07-27 16:21:56 +0000 |
commit | e9549a4f9cf7ca7d601dc0afde42de4308c851a8 (patch) | |
tree | 399a26406759e90c736b8d851e76618655a92155 /Zend/zend_exceptions.c | |
parent | 47bf193c530e234800501bdcbf5ef6dca7c6ca35 (diff) | |
download | php-git-e9549a4f9cf7ca7d601dc0afde42de4308c851a8.tar.gz |
- Be specific about visibility
Diffstat (limited to 'Zend/zend_exceptions.c')
-rw-r--r-- | Zend/zend_exceptions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_exceptions.c b/Zend/zend_exceptions.c index 0ceba5fc84..0122292e72 100644 --- a/Zend/zend_exceptions.c +++ b/Zend/zend_exceptions.c @@ -528,7 +528,7 @@ ZEND_END_ARG_INFO(); static zend_function_entry default_exception_functions[] = { ZEND_ME(exception, __clone, NULL, ZEND_ACC_PRIVATE|ZEND_ACC_FINAL) - ZEND_ME(exception, __construct, arginfo_exception___construct, 0) + ZEND_ME(exception, __construct, arginfo_exception___construct, ZEND_ACC_PUBLIC) ZEND_ME(exception, getMessage, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) ZEND_ME(exception, getCode, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) ZEND_ME(exception, getFile, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) @@ -549,7 +549,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_error_exception___construct, 0, 0, 3) ZEND_END_ARG_INFO(); static zend_function_entry error_exception_functions[] = { - ZEND_ME(error_exception, __construct, arginfo_error_exception___construct, 0) + ZEND_ME(error_exception, __construct, arginfo_error_exception___construct, ZEND_ACC_PUBLIC) ZEND_ME(error_exception, getSeverity, NULL, ZEND_ACC_PUBLIC|ZEND_ACC_FINAL) {NULL, NULL, NULL} }; |