mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
internal.h: adjust indent
* internal.h (RCLASS_SUPER, RCLASS_SET_SUPER): adjust indent. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9421b18662
commit
ea54c59a8e
1 changed files with 5 additions and 4 deletions
|
@ -76,13 +76,14 @@ struct rb_classext_struct {
|
||||||
static inline VALUE
|
static inline VALUE
|
||||||
RCLASS_SUPER(VALUE c)
|
RCLASS_SUPER(VALUE c)
|
||||||
{
|
{
|
||||||
return RCLASS_EXT(c)->super;
|
return RCLASS_EXT(c)->super;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline VALUE
|
static inline VALUE
|
||||||
RCLASS_SET_SUPER(VALUE a, VALUE b) {
|
RCLASS_SET_SUPER(VALUE a, VALUE b)
|
||||||
OBJ_WRITE(a, &RCLASS_EXT(a)->super, b);
|
{
|
||||||
return b;
|
OBJ_WRITE(a, &RCLASS_EXT(a)->super, b);
|
||||||
|
return b;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct vtm; /* defined by timev.h */
|
struct vtm; /* defined by timev.h */
|
||||||
|
|
Loading…
Add table
Reference in a new issue