Skip to content

Commit 75ac3f1

Browse files
committed
RUBY-31354 Replaced preview3 headers with release
1 parent 7de4557 commit 75ac3f1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+663
-386
lines changed

lib/debase/ruby_core_source/ruby-3.3.0-preview3/ccan/list/list.h renamed to lib/debase/ruby_core_source/ruby-3.3.0-p0/ccan/list/list.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -635,14 +635,16 @@ static inline void ccan_list_prepend_list_(struct ccan_list_head *to,
635635

636636
/* internal macros, do not use directly */
637637
#define ccan_list_for_each_off_dir_(h, i, off, dir) \
638-
for (i = ccan_list_node_to_off_(ccan_list_debug(h, CCAN_LIST_LOC)->n.dir, \
638+
for (i = 0, \
639+
i = ccan_list_node_to_off_(ccan_list_debug(h, CCAN_LIST_LOC)->n.dir, \
639640
(off)); \
640641
ccan_list_node_from_off_((void *)i, (off)) != &(h)->n; \
641642
i = ccan_list_node_to_off_(ccan_list_node_from_off_((void *)i, (off))->dir, \
642643
(off)))
643644

644645
#define ccan_list_for_each_safe_off_dir_(h, i, nxt, off, dir) \
645-
for (i = ccan_list_node_to_off_(ccan_list_debug(h, CCAN_LIST_LOC)->n.dir, \
646+
for (i = 0, \
647+
i = ccan_list_node_to_off_(ccan_list_debug(h, CCAN_LIST_LOC)->n.dir, \
646648
(off)), \
647649
nxt = ccan_list_node_to_off_(ccan_list_node_from_off_(i, (off))->dir, \
648650
(off)); \

0 commit comments

Comments
 (0)