mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Zend: Mark zend_ast_evaluate_inner as static (#19950)
As this function is not exported in a header
This commit is contained in:
committed by
GitHub
parent
ba4a12bc39
commit
d77d44e1f7
@@ -558,7 +558,7 @@ static zend_class_entry *zend_ast_fetch_class(zend_ast *ast, zend_class_entry *s
|
||||
return zend_fetch_class_with_scope(zend_ast_get_str(ast), (ast->attr >> ZEND_CONST_EXPR_NEW_FETCH_TYPE_SHIFT) | ZEND_FETCH_CLASS_EXCEPTION, scope);
|
||||
}
|
||||
|
||||
ZEND_API zend_result ZEND_FASTCALL zend_ast_evaluate_inner(
|
||||
static zend_result ZEND_FASTCALL zend_ast_evaluate_inner(
|
||||
zval *result,
|
||||
zend_ast *ast,
|
||||
zend_class_entry *scope,
|
||||
@@ -589,7 +589,7 @@ ZEND_API zend_result ZEND_FASTCALL zend_ast_evaluate_ex(
|
||||
return r;
|
||||
}
|
||||
|
||||
ZEND_API zend_result ZEND_FASTCALL zend_ast_evaluate_inner(
|
||||
static zend_result ZEND_FASTCALL zend_ast_evaluate_inner(
|
||||
zval *result,
|
||||
zend_ast *ast,
|
||||
zend_class_entry *scope,
|
||||
|
||||
Reference in New Issue
Block a user