Skip to content

Commit c9b2ec7

Browse files
committed
remove debug prints
1 parent ffe4382 commit c9b2ec7

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Zend/zend_compile.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3227,8 +3227,6 @@ void zend_do_begin_namespace(znode *ns_token, znode *ns_name TSRMLS_DC)
32273227
/* new symbol tables */
32283228
CG(class_table) = &ns->class_table;
32293229
CG(function_table) = &ns->function_table;
3230-
3231-
fprintf(stderr, "Start namespace '%s'\n", ns->name);
32323230
}
32333231

32343232
void zend_do_end_namespace(znode *ns_token TSRMLS_DC)
@@ -3249,8 +3247,6 @@ void zend_do_end_namespace(znode *ns_token TSRMLS_DC)
32493247
/* restore symbol tables */
32503248
CG(class_table) = &CG(active_namespace)->class_table;
32513249
CG(function_table) = &CG(active_namespace)->function_table;
3252-
3253-
fprintf(stderr, "End namespace\n");
32543250
}
32553251

32563252
void zend_do_declare_namespace_var(znode *var_name, znode *value TSRMLS_DC)

0 commit comments

Comments
 (0)