helly Tue Jul 27 12:21:56 2004 EDT
Modified files:
/ZendEngine2 zend_exceptions.c
Log:
- Be specific about visibility
http://cvs.php.net/diff.php/ZendEngine2/zend_exceptions.c?r1=1.69&r2=1.70&ty=u
Index: ZendEngine2/zend_exceptions.c
diff -u ZendEngine2/zend_exceptions.c:1.69 ZendEngine2/zend_exceptions.c:1.70
--- ZendEngine2/zend_exceptions.c:1.69 Sun Jul 25 03:05:48 2004
+++ ZendEngine2/zend_exceptions.c Tue Jul 27 12:21:56 2004
@@ -19,7 +19,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_exceptions.c,v 1.69 2004/07/25 07:05:48 helly Exp $ */
+/* $Id: zend_exceptions.c,v 1.70 2004/07/27 16:21:56 helly Exp $ */
#include "zend.h"
#include "zend_API.h"
@@ -528,7 +528,7 @@
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_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}
};
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|