Skip to content

Commit 617b047

Browse files
committed
Remove obsolete TODO comment
1 parent 8b393c7 commit 617b047

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Zend/zend_vm_def.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9028,7 +9028,6 @@ ZEND_VM_COLD_CONST_HANDLER(190, ZEND_COUNT, CONST|TMPVAR|CV, UNUSED)
90289028
zval retval;
90299029

90309030
zend_call_method_with_0_params(zobj, NULL, NULL, "count", &retval);
9031-
// TODO Should this use zval_get_long_ex(&retval, /* is_strict */ false);
90329031
count = zval_get_long(&retval);
90339032
zval_ptr_dtor(&retval);
90349033
break;

Zend/zend_vm_execute.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10528,7 +10528,6 @@ static ZEND_VM_COLD ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_COUNT_SPEC_CONST_
1052810528
zval retval;
1052910529

1053010530
zend_call_method_with_0_params(zobj, NULL, NULL, "count", &retval);
10531-
// TODO Should this use zval_get_long_ex(&retval, /* is_strict */ false);
1053210531
count = zval_get_long(&retval);
1053310532
zval_ptr_dtor(&retval);
1053410533
break;
@@ -17783,7 +17782,6 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_COUNT_SPEC_TMPVAR_UNUSED_HANDL
1778317782
zval retval;
1778417783

1778517784
zend_call_method_with_0_params(zobj, NULL, NULL, "count", &retval);
17786-
// TODO Should this use zval_get_long_ex(&retval, /* is_strict */ false);
1778717785
count = zval_get_long(&retval);
1778817786
zval_ptr_dtor(&retval);
1778917787
break;
@@ -47546,7 +47544,6 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_COUNT_SPEC_CV_UNUSED_HANDLER(Z
4754647544
zval retval;
4754747545

4754847546
zend_call_method_with_0_params(zobj, NULL, NULL, "count", &retval);
47549-
// TODO Should this use zval_get_long_ex(&retval, /* is_strict */ false);
4755047547
count = zval_get_long(&retval);
4755147548
zval_ptr_dtor(&retval);
4755247549
break;

0 commit comments

Comments
 (0)