Skip to content

Commit fe9a3be

Browse files
committed
Fix the unknown warning group on wasm
1 parent 64a52c2 commit fe9a3be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

thread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4779,7 +4779,7 @@ rb_gc_set_stack_end(VALUE **stack_end_p)
47794779
{
47804780
VALUE stack_end;
47814781
COMPILER_WARNING_PUSH
4782-
#ifdef __GNUC__
4782+
#if RBIMPL_COMPILER_IS(GCC)
47834783
COMPILER_WARNING_IGNORED(-Wdangling-pointer);
47844784
#endif
47854785
*stack_end_p = &stack_end;

0 commit comments

Comments
 (0)