Commit 48383340 authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #365 from selman/DISABLE_STDIO

clean -Wunused-function when defined DISABLE_STDIO
parents 8e1c842b e2c4b352
...@@ -4934,6 +4934,8 @@ mrb_load_string(mrb_state *mrb, const char *s) ...@@ -4934,6 +4934,8 @@ mrb_load_string(mrb_state *mrb, const char *s)
return mrb_load_string_cxt(mrb, s, NULL); return mrb_load_string_cxt(mrb, s, NULL);
} }
#ifdef ENABLE_STDIO
static void static void
dump_prefix(int offset) dump_prefix(int offset)
{ {
...@@ -4952,6 +4954,8 @@ dump_recur(mrb_state *mrb, node *tree, int offset) ...@@ -4952,6 +4954,8 @@ dump_recur(mrb_state *mrb, node *tree, int offset)
} }
} }
#endif
void void
parser_dump(mrb_state *mrb, node *tree, int offset) parser_dump(mrb_state *mrb, node *tree, int offset)
{ {
......
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