From a04d8c951393060f613853dc3c44afb090f63e1b Mon Sep 17 00:00:00 2001 From: Jemma Issroff Date: Thu, 26 May 2022 18:40:34 -0400 Subject: [PATCH] Remove trailing comma from FL_USER3 (#5958) --- include/ruby/internal/core/rclass.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ruby/internal/core/rclass.h b/include/ruby/internal/core/rclass.h index becdae7571..b0b6bfc80c 100644 --- a/include/ruby/internal/core/rclass.h +++ b/include/ruby/internal/core/rclass.h @@ -58,7 +58,7 @@ enum ruby_rmodule_flags { * rb_mod_refine() has this flag set. This is the bit which controls * difference between normal inclusion versus refinements. */ - RMODULE_IS_REFINEMENT = RUBY_FL_USER3, + RMODULE_IS_REFINEMENT = RUBY_FL_USER3 }; struct RClass; /* Opaque, declared here for RCLASS() macro. */