Skip to content

Commit e43d9c7

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
2 parents 385151d + 0956267 commit e43d9c7

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
@@ -230,7 +230,7 @@ PHPAPI zend_string *spl_filesystem_object_get_path(spl_filesystem_object *intern
230230
return zend_string_copy(intern->path);
231231
} /* }}} */
232232

233-
static inline zend_result spl_filesystem_object_get_file_name(spl_filesystem_object *intern) /* {{{ */
233+
static zend_result spl_filesystem_object_get_file_name(spl_filesystem_object *intern) /* {{{ */
234234
{
235235
if (intern->file_name) {
236236
/* already known */

ext/spl/spl_heap.c

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

508-
static inline HashTable* spl_heap_object_get_debug_info(zend_class_entry *ce, zend_object *obj) { /* {{{ */
508+
static HashTable* spl_heap_object_get_debug_info(zend_class_entry *ce, zend_object *obj) { /* {{{ */
509509
spl_heap_object *intern = spl_heap_from_obj(obj);
510510
zval tmp, heap_array;
511511
zend_string *pnstr;

0 commit comments

Comments
 (0)