From: Andi Gutmans Date: Fri, 5 Jan 2001 14:34:15 +0000 (+0000) Subject: - Get rid of C++ comments X-Git-Tag: php-4.0.5RC1~727 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e5c59ebcbc2457721a8ceab74bb41904e221b7a;p=php - Get rid of C++ comments --- diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index 8bfbccc337..d58391ccd7 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -1394,7 +1394,7 @@ static int node_children(zval **children, xmlNode *nodep) xmlChar *content; int ret; -// if(last->type != XML_TEXT_NODE) { +/* if(last->type != XML_TEXT_NODE) { */ /* Each child is a node object */ MAKE_STD_ZVAL(child); ret = zend_list_insert(last, le_domxmlnodep); @@ -1428,7 +1428,7 @@ static int node_children(zval **children, xmlNode *nodep) zend_hash_update(child->value.obj.properties, "children", sizeof("children"), (void *) &mchildren, sizeof(zval *), NULL); count++; -// } +/* } */ last = last->next; } return count;