summaryrefslogtreecommitdiff
path: root/ext/com_dotnet
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2005-04-22 08:59:21 +0000
committerAntony Dovgal <tony2001@php.net>2005-04-22 08:59:21 +0000
commit755b027e8c34fc85bd4a4fd393cf206152e28911 (patch)
tree2e6631c7268a7ce4f0ba4770f3d56050f3d4077e /ext/com_dotnet
parentca7a6493006c848779a0354d56ac1950d6a1f6e8 (diff)
downloadphp-git-755b027e8c34fc85bd4a4fd393cf206152e28911.tar.gz
fix C++ comments
Diffstat (limited to 'ext/com_dotnet')
-rw-r--r--ext/com_dotnet/com_extension.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/com_dotnet/com_extension.c b/ext/com_dotnet/com_extension.c
index c4679a82ee..bcd2e609fa 100644
--- a/ext/com_dotnet/com_extension.c
+++ b/ext/com_dotnet/com_extension.c
@@ -194,12 +194,12 @@ PHP_MINIT_FUNCTION(com_dotnet)
INIT_CLASS_ENTRY(ce, "com_exception", NULL);
php_com_exception_class_entry = zend_register_internal_class_ex(&ce, zend_exception_get_default(), NULL TSRMLS_CC);
php_com_exception_class_entry->ce_flags |= ZEND_ACC_FINAL;
-// php_com_exception_class_entry->constructor->common.fn_flags |= ZEND_ACC_PROTECTED;
+/* php_com_exception_class_entry->constructor->common.fn_flags |= ZEND_ACC_PROTECTED; */
INIT_CLASS_ENTRY(ce, "com_safearray_proxy", NULL);
php_com_saproxy_class_entry = zend_register_internal_class(&ce TSRMLS_CC);
php_com_saproxy_class_entry->ce_flags |= ZEND_ACC_FINAL;
-// php_com_saproxy_class_entry->constructor->common.fn_flags |= ZEND_ACC_PROTECTED;
+/* php_com_saproxy_class_entry->constructor->common.fn_flags |= ZEND_ACC_PROTECTED; */
php_com_saproxy_class_entry->get_iterator = php_com_saproxy_iter_get;
INIT_CLASS_ENTRY(ce, "variant", NULL);