diff options
| author | Adam Harvey <aharvey@php.net> | 2013-11-08 21:37:38 -0500 |
|---|---|---|
| committer | Adam Harvey <aharvey@php.net> | 2013-11-08 21:37:38 -0500 |
| commit | da553a816653e7c19bbfb5454fced91b929a6075 (patch) | |
| tree | a6ef8f5ee1a16b487f4062def4c4ffdff73c5fa9 /Zend/zend_compile.h | |
| parent | 95675dfba9e417667e1e093084b27fd8f93d8724 (diff) | |
| download | php-git-da553a816653e7c19bbfb5454fced91b929a6075.tar.gz | |
Fix constant resolution.
Diffstat (limited to 'Zend/zend_compile.h')
| -rw-r--r-- | Zend/zend_compile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index 55575f3994..53bff38470 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -638,7 +638,7 @@ void zend_do_begin_namespace(const znode *name, zend_bool with_brackets TSRMLS_D void zend_do_end_namespace(TSRMLS_D); void zend_verify_namespace(TSRMLS_D); void zend_do_use(znode *name, znode *new_name, int is_global TSRMLS_DC); -void zend_do_use_non_class(znode *ns_name, znode *new_name, int is_global, const char *type, zend_bool case_sensitive, HashTable *current_import_sub, HashTable *lookup_table TSRMLS_DC); +void zend_do_use_non_class(znode *ns_name, znode *new_name, int is_global, int is_function, zend_bool case_sensitive, HashTable *current_import_sub, HashTable *lookup_table TSRMLS_DC); void zend_do_use_function(znode *name, znode *new_name, int is_global TSRMLS_DC); void zend_do_use_const(znode *name, znode *new_name, int is_global TSRMLS_DC); void zend_do_end_compilation(TSRMLS_D); |
