summaryrefslogtreecommitdiff
path: root/ext/domxml/php_domxml.c
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2001-01-05 14:34:15 +0000
committerAndi Gutmans <andi@php.net>2001-01-05 14:34:15 +0000
commit5e5c59ebcbc2457721a8ceab74bb41904e221b7a (patch)
treed56a73c8d0a7291e25c82ebdc9ef4e8434a9a812 /ext/domxml/php_domxml.c
parentdb56ddb36c240c7b69a543bf8891c23d22b3a895 (diff)
downloadphp-git-5e5c59ebcbc2457721a8ceab74bb41904e221b7a.tar.gz
- Get rid of C++ comments
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r--ext/domxml/php_domxml.c4
1 files changed, 2 insertions, 2 deletions
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;