We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea29d60 commit 99adb5cCopy full SHA for 99adb5c
ext/spl/spl_deque.c
@@ -95,11 +95,6 @@ static void DEBUG_ASSERT_CONSISTENT_DEQUE(const spl_deque_entries *array) {
95
#define DEBUG_ASSERT_CONSISTENT_DEQUE(array) do {} while(0)
96
#endif
97
98
-static zend_always_inline zval* spl_deque_get_offset_entries(const spl_deque_entries *array) {
99
- DEBUG_ASSERT_CONSISTENT_DEQUE(array);
100
- return &array->circular_buffer[array->offset];
101
-}
102
-
103
static zend_always_inline zval* spl_deque_get_entry_at_offset(const spl_deque_entries *array, size_t offset) {
104
DEBUG_ASSERT_CONSISTENT_DEQUE(array);
105
ZEND_ASSERT(offset < array->size);
0 commit comments