Commit 3483e360 authored by Yukihiro Matsumoto's avatar Yukihiro Matsumoto

remove unused #include

parent affb5cb7
...@@ -269,7 +269,9 @@ typedef struct mrb_state { ...@@ -269,7 +269,9 @@ typedef struct mrb_state {
mrb_sym symidx; mrb_sym symidx;
struct kh_n2s *name2sym; /* symbol table */ struct kh_n2s *name2sym; /* symbol table */
struct kh_s2n *sym2name; /* reverse symbol table */ struct kh_s2n *sym2name; /* reverse symbol table */
#ifdef INCLUDE_REGEXP
struct RNode *local_svar;/* regexp */ struct RNode *local_svar;/* regexp */
#endif
struct RClass *eException_class; struct RClass *eException_class;
struct RClass *eStandardError_class; struct RClass *eStandardError_class;
......
...@@ -16,12 +16,6 @@ ...@@ -16,12 +16,6 @@
#include "mruby/variable.h" #include "mruby/variable.h"
#include <stdio.h> #include <stdio.h>
#ifdef INCLUDE_REGEXP
#include "re.h"
#include "regex.h"
#include "st.h"
#endif
/* ------------------------------------------------------ */ /* ------------------------------------------------------ */
KHASH_MAP_INIT_INT(s2n, const char*); KHASH_MAP_INIT_INT(s2n, const char*);
KHASH_MAP_INIT_STR(n2s, mrb_sym); KHASH_MAP_INIT_STR(n2s, mrb_sym);
......
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