We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a32c1c commit 3b70dc0Copy full SHA for 3b70dc0
ext/spl/spl_heap.c
@@ -682,7 +682,7 @@ SPL_METHOD(SplPriorityQueue, insert)
682
extract the element out of the top of the priority queue */
683
SPL_METHOD(SplPriorityQueue, extract)
684
{
685
- zval value, *value_out;
+ zval value;
686
spl_heap_object *intern;
687
688
if (zend_parse_parameters_none() == FAILURE) {
@@ -712,7 +712,7 @@ SPL_METHOD(SplPriorityQueue, extract)
712
Peek at the top element of the priority queue */
713
SPL_METHOD(SplPriorityQueue, top)
714
715
- zval *value, *value_out;
+ zval *value;
716
717
718
0 commit comments