diff options
author | Matt Valentine-House <[email protected]> | 2021-01-26 16:06:31 +0000 |
---|---|---|
committer | Aaron Patterson <[email protected]> | 2021-02-01 08:42:54 -0800 |
commit | 49950266be32ae09ee6a17539c4412f032995fc6 (patch) | |
tree | e829c015229561092c05ba8205ce989ae785e499 /internal/class.h | |
parent | 1cdae49d39fbaef654df487f168d1fb14a146d59 (diff) |
Add RCLASS_PARENT_SUBMODULES Macro
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4124
Diffstat (limited to 'internal/class.h')
-rw-r--r-- | internal/class.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/class.h b/internal/class.h index eade920ff0..da1df196be 100644 --- a/internal/class.h +++ b/internal/class.h @@ -92,6 +92,7 @@ typedef struct rb_classext_struct rb_classext_t; # define RCLASS_SERIAL(c) (RCLASS_EXT(c)->class_serial) #endif #define RCLASS_INCLUDER(c) (RCLASS_EXT(c)->includer) +#define RCLASS_PARENT_SUBCLASSES(c) (RCLASS_EXT(c)->parent_subclasses) #define RICLASS_IS_ORIGIN FL_USER5 #define RCLASS_CLONED FL_USER6 |