mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ruby.h (RCLASS_IV_TBL): defined.
(RCLASS_M_TBL): ditto. (RCLASS_SUPER): ditto. (RMODULE_IV_TBL): ditto. (RMODULE_M_TBL): ditto. (RMODULE_SUPER): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@13735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fdcb90b5d5
commit
754b1fac44
2 changed files with 15 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
|||
Thu Oct 18 10:57:06 2007 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ruby.h (RCLASS_IV_TBL): defined.
|
||||
(RCLASS_M_TBL): ditto.
|
||||
(RCLASS_SUPER): ditto.
|
||||
(RMODULE_IV_TBL): ditto.
|
||||
(RMODULE_M_TBL): ditto.
|
||||
(RMODULE_SUPER): ditto.
|
||||
|
||||
Mon Oct 15 22:08:55 2007 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* NEWS: Merge some of the sub-sections, as the differences were
|
||||
|
|
6
ruby.h
6
ruby.h
|
@ -329,6 +329,12 @@ struct RClass {
|
|||
struct st_table *m_tbl;
|
||||
VALUE super;
|
||||
};
|
||||
#define RCLASS_IV_TBL(c) (RCLASS(c)->iv_tbl)
|
||||
#define RCLASS_M_TBL(c) (RCLASS(c)->m_tbl)
|
||||
#define RCLASS_SUPER(c) (RCLASS(c)->super)
|
||||
#define RMODULE_IV_TBL(m) RCLASS_IV_TBL(m)
|
||||
#define RMODULE_M_TBL(m) RCLASS_M_TBL(m)
|
||||
#define RMODULE_SUPER(m) RCLASS_SUPER(m)
|
||||
|
||||
struct RFloat {
|
||||
struct RBasic basic;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue