Skip to content

Commit 9d25296

Browse files
committed
Merge branch 'PHP-8.3'
2 parents e63f822 + e43d9c7 commit 9d25296

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ext/session/session.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ static inline void php_session_cleanup_filename(void) /* {{{ */
132132
/* }}} */
133133

134134
/* Dispatched by RSHUTDOWN and by php_session_destroy */
135-
static inline void php_rshutdown_session_globals(void) /* {{{ */
135+
static void php_rshutdown_session_globals(void) /* {{{ */
136136
{
137137
/* Do NOT destroy PS(mod_user_names) here! */
138138
if (!Z_ISUNDEF(PS(http_session_vars))) {

ext/spl/spl_directory.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ PHPAPI zend_string *spl_filesystem_object_get_path(const spl_filesystem_object *
217217
return zend_string_copy(intern->path);
218218
} /* }}} */
219219

220-
static inline zend_result spl_filesystem_object_get_file_name(spl_filesystem_object *intern) /* {{{ */
220+
static zend_result spl_filesystem_object_get_file_name(spl_filesystem_object *intern) /* {{{ */
221221
{
222222
if (intern->file_name) {
223223
/* already known */

ext/spl/spl_heap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ static zend_result spl_heap_object_count_elements(zend_object *object, zend_long
503503
}
504504
/* }}} */
505505

506-
static inline HashTable* spl_heap_object_get_debug_info(const zend_class_entry *ce, zend_object *obj) { /* {{{ */
506+
static HashTable* spl_heap_object_get_debug_info(const zend_class_entry *ce, zend_object *obj) { /* {{{ */
507507
spl_heap_object *intern = spl_heap_from_obj(obj);
508508
zval tmp, heap_array;
509509
HashTable *debug_info;

0 commit comments

Comments
 (0)