From 6d2f93f17022bb89ffed7c8f12ad6a8ef048e2b2 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 15 Sep 2025 16:56:23 +0900 Subject: [ruby/date] Suppress maybe-uninitialized warning by gcc-13 https://github.com/ruby/date/commit/afaa4a997b --- ext/date/date_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/date/date_core.c b/ext/date/date_core.c index dbee067f6b..457838e41f 100644 --- a/ext/date/date_core.c +++ b/ext/date/date_core.c @@ -3974,7 +3974,7 @@ rt_complete_frags(VALUE klass, VALUE hash) rb_gc_register_mark_object(tab); } - k = Qnil; + k = a = Qnil; { long i, eno = 0; -- cgit v1.2.3