cvs: ZendEngine2 / zend_builtin_functions.c

From: Date: Tue, 07 Mar 2006 07:58:56 +0000
Subject: cvs: ZendEngine2 / zend_builtin_functions.c
Groups: php.zend-engine.cvs 
Request: Send a blank email to [email protected] to get a copy of this message
derick		Tue Mar  7 07:58:56 2006 UTC

  Modified files:              
    /ZendEngine2	zend_builtin_functions.c 
  Log:
  - Make this compile again
  
  
http://cvs.php.net/viewcvs.cgi/ZendEngine2/zend_builtin_functions.c?r1=1.308&r2=1.309&diff_format=u
Index: ZendEngine2/zend_builtin_functions.c
diff -u ZendEngine2/zend_builtin_functions.c:1.308 ZendEngine2/zend_builtin_functions.c:1.309
--- ZendEngine2/zend_builtin_functions.c:1.308	Tue Mar  7 04:30:15 2006
+++ ZendEngine2/zend_builtin_functions.c	Tue Mar  7 07:58:56 2006
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: zend_builtin_functions.c,v 1.308 2006/03/07 04:30:15 andrei Exp $ */
+/* $Id: zend_builtin_functions.c,v 1.309 2006/03/07 07:58:56 derick Exp $ */
 
 #include "zend.h"
 #include "zend_API.h"
@@ -699,7 +699,7 @@
 
 /* {{{ proto bool is_subclass_of(object object, string class_name)
    Returns true if the object has this class as one of its parents */
-ZEND_FUNCTION(is_subclass_of) U
+ZEND_FUNCTION(is_subclass_of)
 {
 	is_a_impl(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
 }
@@ -708,7 +708,7 @@
 
 /* {{{ proto bool is_a(object object, string class_name)
    Returns true if the object is of this class or has this class as one of its parents */
-ZEND_FUNCTION(is_a) U
+ZEND_FUNCTION(is_a)
 {
 	zend_error(E_STRICT, "is_a(): Deprecated. Please use the instanceof operator");
 	is_a_impl(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);


Thread (1 message)

  • Derick Rethans
« previous php.zend-engine.cvs (#4700) next »