diff options
author | 卜部昌平 <shyouhei@ruby-lang.org> | 2020-08-14 14:45:23 +0900 |
---|---|---|
committer | 卜部昌平 <shyouhei@ruby-lang.org> | 2020-08-15 12:09:26 +0900 |
commit | ff30358d13d24d8202f2717c43700be70bdd49d3 (patch) | |
tree | 32757f4895a67fefcfb4830e40e2206a7ac388f7 /transcode.c | |
parent | 72d0f2f0e0546a4c7c3b9ec85d3f67a36e9c5038 (diff) |
RARRAY_AREF: convert into an inline function
RARRAY_AREF has been a macro for reasons. We might not be able to change that for public APIs, but why not relax the situation internally to make it an inline function.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3419
Diffstat (limited to 'transcode.c')
-rw-r--r-- | transcode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/transcode.c b/transcode.c index fdc3514d78..3a37c63987 100644 --- a/transcode.c +++ b/transcode.c @@ -14,6 +14,7 @@ #include <ctype.h> #include "internal.h" +#include "internal/array.h" #include "internal/inits.h" #include "internal/object.h" #include "internal/string.h" |