1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Zend/zend_compile.c: remove unused fbc parameter of zend_try_compile_special_func_ex()

This commit is contained in:
Gina Peter Banyard
2025-10-29 18:58:43 +00:00
parent 6cf45c4bd5
commit ee40791aff

View File

@@ -5038,7 +5038,7 @@ static zend_result zend_compile_func_clone(znode *result, zend_ast_list *args)
return SUCCESS;
}
static zend_result zend_try_compile_special_func_ex(znode *result, zend_string *lcname, zend_ast_list *args, zend_function *fbc, uint32_t type) /* {{{ */
static zend_result zend_try_compile_special_func_ex(znode *result, zend_string *lcname, zend_ast_list *args, uint32_t type) /* {{{ */
{
if (zend_string_equals_literal(lcname, "strlen")) {
return zend_compile_func_strlen(result, args);
@@ -5131,7 +5131,7 @@ static zend_result zend_try_compile_special_func(znode *result, zend_string *lcn
return FAILURE;
}
if (zend_try_compile_special_func_ex(result, lcname, args, fbc, type) == SUCCESS) {
if (zend_try_compile_special_func_ex(result, lcname, args, type) == SUCCESS) {
return SUCCESS;
}