Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
3483e360
Commit
3483e360
authored
May 11, 2012
by
Yukihiro Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unused #include
parent
affb5cb7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
6 deletions
+2
-6
include/mruby.h
include/mruby.h
+2
-0
src/symbol.c
src/symbol.c
+0
-6
No files found.
include/mruby.h
View file @
3483e360
...
@@ -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
;
...
...
src/symbol.c
View file @
3483e360
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment