From ba50031707469046407a35b77a3cd81351e951b3 Mon Sep 17 00:00:00 2001 From: "Mark A. Hershberger" Date: Wed, 25 Mar 2009 00:35:28 -0400 Subject: Imported Upstream version 5.1.5 --- ext/spl/spl_engine.c | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) (limited to 'ext/spl/spl_engine.c') diff --git a/ext/spl/spl_engine.c b/ext/spl/spl_engine.c index 2da47f7d3..dcc9af3c6 100755 --- a/ext/spl/spl_engine.c +++ b/ext/spl/spl_engine.c @@ -32,7 +32,7 @@ #include "spl_array.h" /* {{{ spl_instantiate */ -void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC) +PHPAPI void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC) { if (alloc) { ALLOC_ZVAL(*object); @@ -43,20 +43,6 @@ void spl_instantiate(zend_class_entry *pce, zval **object, int alloc TSRMLS_DC) } /* }}} */ -/* {{{ spl_is_instance_of */ -int spl_is_instance_of(zval **obj, zend_class_entry *ce TSRMLS_DC) -{ - /* Ensure everything needed is available before checking for the type. - */ - zend_class_entry *instance_ce; - - if (obj && (instance_ce = spl_get_class_entry(*obj TSRMLS_CC)) != NULL) { - return instanceof_function(instance_ce, ce TSRMLS_CC); - } - return 0; -} -/* }}} */ - /* * Local variables: * tab-width: 4 -- cgit v1.2.3