Skip to content

Commit 8befb02

Browse files
committed
Remove obsolete TODO comment
1 parent 95eae55 commit 8befb02

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
@@ -9041,7 +9041,6 @@ ZEND_VM_COLD_CONST_HANDLER(190, ZEND_COUNT, CONST|TMPVAR|CV, UNUSED)
90419041
zval retval;
90429042

90439043
zend_call_method_with_0_params(zobj, NULL, NULL, "count", &retval);
9044-
// TODO Should this use zval_get_long_ex(&retval, /* is_strict */ false);
90459044
count = zval_get_long(&retval);
90469045
zval_ptr_dtor(&retval);
90479046
break;

Zend/zend_vm_execute.h

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

1054310543
zend_call_method_with_0_params(zobj, NULL, NULL, "count", &retval);
10544-
// TODO Should this use zval_get_long_ex(&retval, /* is_strict */ false);
1054510544
count = zval_get_long(&retval);
1054610545
zval_ptr_dtor(&retval);
1054710546
break;
@@ -17796,7 +17795,6 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_COUNT_SPEC_TMPVAR_UNUSED_HANDL
1779617795
zval retval;
1779717796

1779817797
zend_call_method_with_0_params(zobj, NULL, NULL, "count", &retval);
17799-
// TODO Should this use zval_get_long_ex(&retval, /* is_strict */ false);
1780017798
count = zval_get_long(&retval);
1780117799
zval_ptr_dtor(&retval);
1780217800
break;
@@ -47559,7 +47557,6 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL ZEND_COUNT_SPEC_CV_UNUSED_HANDLER(Z
4755947557
zval retval;
4756047558

4756147559
zend_call_method_with_0_params(zobj, NULL, NULL, "count", &retval);
47562-
// TODO Should this use zval_get_long_ex(&retval, /* is_strict */ false);
4756347560
count = zval_get_long(&retval);
4756447561
zval_ptr_dtor(&retval);
4756547562
break;

0 commit comments

Comments
 (0)