From 86e274f759bec222593017f095547e446bdcccf8 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Sat, 4 Apr 2026 19:57:27 +0900 Subject: [PATCH] irep.h: remove "not yet supported" comment from IREP_TT_BIGINT Co-authored-by: Claude --- include/mruby/irep.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mruby/irep.h b/include/mruby/irep.h index 1719866c8..ab0b125c3 100644 --- a/include/mruby/irep.h +++ b/include/mruby/irep.h @@ -20,7 +20,7 @@ enum irep_pool_type { IREP_TT_SSTR = 2, /* string (static) */ IREP_TT_INT32 = 1, /* 32-bit integer */ IREP_TT_INT64 = 3, /* 64-bit integer */ - IREP_TT_BIGINT = 7, /* big integer (not yet supported) */ + IREP_TT_BIGINT = 7, /* big integer */ IREP_TT_FLOAT = 5, /* float (double/float) */ };