remove MRB_PARSER_BUF_SIZE configuration; close #1596

parent 91a4eb57
...@@ -56,9 +56,6 @@ ...@@ -56,9 +56,6 @@
/* initial minimum size for string buffer */ /* initial minimum size for string buffer */
//#define MRB_STR_BUF_MIN_SIZE 128 //#define MRB_STR_BUF_MIN_SIZE 128
/* array size for parser buffer */
//#define MRB_PARSER_BUF_SIZE 1024
/* arena size */ /* arena size */
//#define MRB_GC_ARENA_SIZE 100 //#define MRB_GC_ARENA_SIZE 100
......
...@@ -96,9 +96,7 @@ struct mrb_parser_heredoc_info { ...@@ -96,9 +96,7 @@ struct mrb_parser_heredoc_info {
mrb_ast_node *doc; mrb_ast_node *doc;
}; };
#ifndef MRB_PARSER_BUF_SIZE #define MRB_PARSER_BUF_SIZE 1024
# define MRB_PARSER_BUF_SIZE 1024
#endif
/* parser structure */ /* parser structure */
struct mrb_parser_state { struct mrb_parser_state {
......
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