irep.h: remove "not yet supported" comment from IREP_TT_BIGINT

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Yukihiro "Matz" Matsumoto
2026-04-04 19:57:27 +09:00
parent d212c7be6c
commit 86e274f759
+1 -1
View File
@@ -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) */
};