gc.c: use renamed MRB_WORDBOX_NO_INLINE_FLOAT macro in RVALUE union

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Yukihiro "Matz" Matsumoto
2026-02-27 11:29:10 +09:00
parent 05295bca32
commit 46b4a0400b
+1 -1
View File
@@ -140,7 +140,7 @@ struct RVALUE {
#if defined(MRB_WORD_BOXING) || (defined(MRB_NAN_BOXING) && defined(MRB_INT64))
struct RInteger integer;
#endif
#if defined(MRB_WORD_BOXING) && !defined(MRB_NO_FLOAT) && defined(MRB_WORDBOX_NO_FLOAT_TRUNCATE)
#if defined(MRB_WORD_BOXING) && !defined(MRB_NO_FLOAT) && defined(MRB_WORDBOX_NO_INLINE_FLOAT)
struct RFloat flt;
#endif
struct RString string;