diff options
author | yui-knk <[email protected]> | 2024-01-07 10:49:18 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2024-01-12 22:10:53 +0900 |
commit | 731fee04c29b31d780b1bfeb878a43355658daa7 () | |
tree | 3067ba94050cb5e6f5d332e6c1d1194892e14f44 /ruby_parser.c | |
parent | b35e21b3889e95cf727f2da49abb881c3466bc75 (diff) |
Use `BUILTIN_TYPE` because SPECIAL_CONST or not is already checked
-rw-r--r-- | ruby_parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ compile_negative_numeric(VALUE val) } #endif } - switch (OBJ_BUILTIN_TYPE(val)) { case T_BIGNUM: BIGNUM_NEGATE(val); val = rb_big_norm(val); |