Unverified Commit 6c5cb109 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto Committed by GitHub

Merge pull request #4473 from...

Merge pull request #4473 from shuujii/make-some-functions-static-in-mrbgems-mruby-metaprog-src-metaprog.c

Make some functions static in `mrbgems/mruby-metaprog/src/metaprog.c`
parents 8ad777c7 534b578d
...@@ -186,7 +186,7 @@ method_entry_loop(mrb_state *mrb, struct RClass* klass, khash_t(st)* set) ...@@ -186,7 +186,7 @@ method_entry_loop(mrb_state *mrb, struct RClass* klass, khash_t(st)* set)
} }
} }
mrb_value static mrb_value
mrb_class_instance_method_list(mrb_state *mrb, mrb_bool recur, struct RClass* klass, int obj) mrb_class_instance_method_list(mrb_state *mrb, mrb_bool recur, struct RClass* klass, int obj)
{ {
khint_t i; khint_t i;
...@@ -565,8 +565,6 @@ mrb_mod_included_modules(mrb_state *mrb, mrb_value self) ...@@ -565,8 +565,6 @@ mrb_mod_included_modules(mrb_state *mrb, mrb_value self)
return result; return result;
} }
mrb_value mrb_class_instance_method_list(mrb_state*, mrb_bool, struct RClass*, int);
/* 15.2.2.4.33 */ /* 15.2.2.4.33 */
/* /*
* call-seq: * call-seq:
...@@ -657,7 +655,7 @@ mrb_mod_s_constants(mrb_state *mrb, mrb_value mod) ...@@ -657,7 +655,7 @@ mrb_mod_s_constants(mrb_state *mrb, mrb_value mod)
return mrb_nil_value(); /* not reached */ return mrb_nil_value(); /* not reached */
} }
mrb_value static mrb_value
mrb_mod_s_nesting(mrb_state *mrb, mrb_value mod) mrb_mod_s_nesting(mrb_state *mrb, mrb_value mod)
{ {
struct RProc *proc; struct RProc *proc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment