summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/internal.h b/internal.h
index b0c36a89bb..2cf4ea7c3b 100644
--- a/internal.h
+++ b/internal.h
@@ -76,13 +76,14 @@ struct rb_classext_struct {
static inline VALUE
RCLASS_SUPER(VALUE c)
{
- return RCLASS_EXT(c)->super;
+ return RCLASS_EXT(c)->super;
}
static inline VALUE
-RCLASS_SET_SUPER(VALUE a, VALUE b) {
- OBJ_WRITE(a, &RCLASS_EXT(a)->super, b);
- return b;
+RCLASS_SET_SUPER(VALUE a, VALUE b)
+{
+ OBJ_WRITE(a, &RCLASS_EXT(a)->super, b);
+ return b;
}
struct vtm; /* defined by timev.h */