diff options
author | S-H-GAMELINKS <[email protected]> | 2023-08-09 20:56:16 +0900 |
---|---|---|
committer | Yuichiro Kaneko <[email protected]> | 2023-08-11 13:50:00 +0900 |
commit | a792890e9b92b284992a80f7acfcdb13cf142ba5 (patch) | |
tree | 4219c66c0a76fd4a70b3d16eda72a958990b5289 /rubyparser.h | |
parent | 654b64822395ead530ac3ecae318197be85c8b52 (diff) |
Remove uneeded fix2int and rational_raw property for Universal Parser
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/8190
Diffstat (limited to 'rubyparser.h')
-rw-r--r-- | rubyparser.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/rubyparser.h b/rubyparser.h index 4bdb267c79..92c64870c0 100644 --- a/rubyparser.h +++ b/rubyparser.h @@ -465,7 +465,6 @@ typedef struct rb_parser_config_struct { double (*float_value)(VALUE v); /* Numeric */ - long (*fix2int)(VALUE val); int (*num2int)(VALUE val); VALUE (*int_positive_pow)(long x, unsigned long y); VALUE (*int2num)(int v); @@ -473,7 +472,6 @@ typedef struct rb_parser_config_struct { /* Rational */ VALUE (*rational_new)(VALUE x, VALUE y); - VALUE (*rational_raw)(VALUE x, VALUE y); VALUE (*rational_raw1)(VALUE x); void (*rational_set_num)(VALUE r, VALUE n); VALUE (*rational_get_num)(VALUE obj); |