summaryrefslogtreecommitdiff
path: root/internal/range.h
diff options
context:
space:
mode:
Diffstat (limited to 'internal/range.h')
-rw-r--r--internal/range.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/internal/range.h b/internal/range.h
index 4fe6037c89..2394937bf8 100644
--- a/internal/range.h
+++ b/internal/range.h
@@ -1,7 +1,6 @@
#ifndef INTERNAL_RANGE_H /*-*-C-*-vi:se ft=c:*/
#define INTERNAL_RANGE_H
/**
- * @file
* @author Ruby developers <ruby-core@ruby-lang.org>
* @copyright This file is a part of the programming language Ruby.
* Permission is hereby granted, to either redistribute and/or
@@ -25,13 +24,13 @@ RANGE_BEG(VALUE r)
static inline VALUE
RANGE_END(VALUE r)
{
- return RSTRUCT(r)->as.ary[1];
+ return RSTRUCT_GET(r, 1);
}
static inline VALUE
RANGE_EXCL(VALUE r)
{
- return RSTRUCT(r)->as.ary[2];
+ return RSTRUCT_GET(r, 2);
}
VALUE