summaryrefslogtreecommitdiffhomepage
path: root/src/class.c
diff options
context:
space:
mode:
authorCorey Powell <[email protected]>2015-07-16 15:25:14 -0500
committerCorey Powell <[email protected]>2015-07-16 15:25:14 -0500
commitae1ece72282fdfa558810e8422bb690bbc6d2193 (patch)
tree65ccb724e4f6f2a01f6156de10bbe2ed93e48098 /src/class.c
parent667f7788db2b3b78cc4cc65c0f37ab38347116c5 (diff)
downloadmruby-ae1ece72282fdfa558810e8422bb690bbc6d2193.tar.gz
mruby-ae1ece72282fdfa558810e8422bb690bbc6d2193.zip
Make include_module_at static
Since I can't forsee any reason to use it directly inplace of using prepend/include
Diffstat (limited to 'src/class.c')
-rw-r--r--src/class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class.c b/src/class.c
index f342ded20..90c463579 100644
--- a/src/class.c
+++ b/src/class.c
@@ -797,7 +797,7 @@ include_class_new(mrb_state *mrb, struct RClass *m, struct RClass *super)
return ic;
}
-MRB_API int
+static int
include_module_at(mrb_state *mrb, struct RClass *c, struct RClass *ins_pos, struct RClass *m, int search_super)
{
struct RClass *p, *ic;