From: Stanislav Malyshev Date: Sun, 16 Feb 2003 12:04:41 +0000 (+0000) Subject: remove debug prints X-Git-Tag: RELEASE_0_5~981 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c9b2ec7be79515da23419e59d07d7ece31706701;p=php remove debug prints --- diff --git a/Zend/zend_compile.c b/Zend/zend_compile.c index 815770e441..4eb9901b4f 100644 --- a/Zend/zend_compile.c +++ b/Zend/zend_compile.c @@ -3227,8 +3227,6 @@ void zend_do_begin_namespace(znode *ns_token, znode *ns_name TSRMLS_DC) /* new symbol tables */ CG(class_table) = &ns->class_table; CG(function_table) = &ns->function_table; - - fprintf(stderr, "Start namespace '%s'\n", ns->name); } void zend_do_end_namespace(znode *ns_token TSRMLS_DC) @@ -3249,8 +3247,6 @@ void zend_do_end_namespace(znode *ns_token TSRMLS_DC) /* restore symbol tables */ CG(class_table) = &CG(active_namespace)->class_table; CG(function_table) = &CG(active_namespace)->function_table; - - fprintf(stderr, "End namespace\n"); } void zend_do_declare_namespace_var(znode *var_name, znode *value TSRMLS_DC)