]> granicus.if.org Git - php/commitdiff
remove debug prints
authorStanislav Malyshev <stas@php.net>
Sun, 16 Feb 2003 12:04:41 +0000 (12:04 +0000)
committerStanislav Malyshev <stas@php.net>
Sun, 16 Feb 2003 12:04:41 +0000 (12:04 +0000)
Zend/zend_compile.c

index 815770e441a08a765e505e8a1dd39a9aa945fba8..4eb9901b4f8b0f2ce6498cc0b90a710f6a374aac 100644 (file)
@@ -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)