diff options
| author | Peter Zhu <peter@peterzhu.ca> | 2021-08-24 13:14:14 -0400 |
|---|---|---|
| committer | Peter Zhu <peter@peterzhu.ca> | 2021-08-25 09:28:21 -0400 |
| commit | c08d4067be83d03a6fcd173ffd2d206a01d09c90 (patch) | |
| tree | c382374bbf5a4cc888cebf2602b10eecfc151711 /include/ruby | |
| parent | 01be881f35e6dafbd8498f2ca9a02eedb1f40319 (diff) | |
[Feature #18045] Remove T_PAYLOAD
This commit removes T_PAYLOAD since the new VWA implementation no longer
requires T_PAYLOAD types.
Co-authored-by: Aaron Patterson <tenderlove@ruby-lang.org>
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4773
Diffstat (limited to 'include/ruby')
| -rw-r--r-- | include/ruby/internal/value_type.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/ruby/internal/value_type.h b/include/ruby/internal/value_type.h index 5642686c7b..e449cfab37 100644 --- a/include/ruby/internal/value_type.h +++ b/include/ruby/internal/value_type.h @@ -81,7 +81,6 @@ #define T_TRUE RUBY_T_TRUE #define T_UNDEF RUBY_T_UNDEF #define T_ZOMBIE RUBY_T_ZOMBIE -#define T_PAYLOAD RUBY_T_PAYLOAD #define BUILTIN_TYPE RB_BUILTIN_TYPE #define DYNAMIC_SYM_P RB_DYNAMIC_SYM_P @@ -134,7 +133,6 @@ ruby_value_type { RUBY_T_SYMBOL = 0x14, /**< @see struct ::RSymbol */ RUBY_T_FIXNUM = 0x15, /**< Integers formerly known as Fixnums. */ RUBY_T_UNDEF = 0x16, /**< @see ::RUBY_Qundef */ - RUBY_T_PAYLOAD = 0x17, /**< @see ::RPayload */ RUBY_T_IMEMO = 0x1a, /**< @see struct ::RIMemo */ RUBY_T_NODE = 0x1b, /**< @see struct ::RNode */ |
