File tree 5 files changed +7
-7
lines changed
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 34
34
#include "spl_exceptions.h"
35
35
36
36
/* Defined later in the file */
37
- zend_object_handlers spl_handler_ArrayIterator ;
37
+ static zend_object_handlers spl_handler_ArrayIterator ;
38
38
PHPAPI zend_class_entry * spl_ce_ArrayIterator ;
39
39
PHPAPI zend_class_entry * spl_ce_RecursiveArrayIterator ;
40
40
41
41
/* ArrayObject class */
42
- zend_object_handlers spl_handler_ArrayObject ;
42
+ static zend_object_handlers spl_handler_ArrayObject ;
43
43
PHPAPI zend_class_entry * spl_ce_ArrayObject ;
44
44
45
45
typedef struct _spl_array_object {
Original file line number Diff line number Diff line change 33
33
#include "spl_dllist_arginfo.h"
34
34
#include "spl_exceptions.h"
35
35
36
- zend_object_handlers spl_handler_SplDoublyLinkedList ;
36
+ static zend_object_handlers spl_handler_SplDoublyLinkedList ;
37
37
PHPAPI zend_class_entry * spl_ce_SplDoublyLinkedList ;
38
38
PHPAPI zend_class_entry * spl_ce_SplQueue ;
39
39
PHPAPI zend_class_entry * spl_ce_SplStack ;
Original file line number Diff line number Diff line change 33
33
#include "spl_iterators.h"
34
34
#include "ext/json/php_json.h"
35
35
36
- zend_object_handlers spl_handler_SplFixedArray ;
36
+ static zend_object_handlers spl_handler_SplFixedArray ;
37
37
PHPAPI zend_class_entry * spl_ce_SplFixedArray ;
38
38
39
39
#ifdef COMPILE_DL_SPL_FIXEDARRAY
Original file line number Diff line number Diff line change 33
33
34
34
#define SPL_HEAP_CORRUPTED 0x00000001
35
35
36
- zend_object_handlers spl_handler_SplHeap ;
37
- zend_object_handlers spl_handler_SplPriorityQueue ;
36
+ static zend_object_handlers spl_handler_SplHeap ;
37
+ static zend_object_handlers spl_handler_SplPriorityQueue ;
38
38
39
39
PHPAPI zend_class_entry * spl_ce_SplHeap ;
40
40
PHPAPI zend_class_entry * spl_ce_SplMaxHeap ;
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ PHPAPI zend_class_entry *spl_ce_SplSubject;
42
42
PHPAPI zend_class_entry * spl_ce_SplObjectStorage ;
43
43
PHPAPI zend_class_entry * spl_ce_MultipleIterator ;
44
44
45
- PHPAPI zend_object_handlers spl_handler_SplObjectStorage ;
45
+ static zend_object_handlers spl_handler_SplObjectStorage ;
46
46
47
47
/* Bit flags for marking internal functionality overridden by SplObjectStorage subclasses. */
48
48
#define SOS_OVERRIDDEN_READ_DIMENSION 1
You can’t perform that action at this time.
0 commit comments