summaryrefslogtreecommitdiffhomepage
path: root/src/class.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-02-28 23:35:04 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2013-02-28 23:35:04 -0800
commitc0e1fc935c301dd86705d754bcf8493c5200eaf9 (patch)
tree0379151d9378a1cfb3c59c1ae829da2a1a314e6a /src/class.c
parent778dbddb6e2c4a18e4f6a157593c5b1da4f89a58 (diff)
parent0b7b3f9d7fe7402cb09d83ceac59905d11d4d956 (diff)
downloadmruby-c0e1fc935c301dd86705d754bcf8493c5200eaf9.tar.gz
mruby-c0e1fc935c301dd86705d754bcf8493c5200eaf9.zip
Merge pull request #918 from monaka/pr-remove-unused-struct-and-more
Remove unused struct and more
Diffstat (limited to 'src/class.c')
-rw-r--r--src/class.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/class.c b/src/class.c
index 1b68f2ff4..c0e71dad7 100644
--- a/src/class.c
+++ b/src/class.c
@@ -18,14 +18,6 @@
KHASH_DEFINE(mt, mrb_sym, struct RProc*, 1, kh_int_hash_func, kh_int_hash_equal)
-typedef struct fc_result {
- mrb_sym name;
- struct RClass * klass;
- mrb_value path;
- struct RClass * track;
- struct fc_result *prev;
-} fcresult_t;
-
void
mrb_gc_mark_mt(mrb_state *mrb, struct RClass *c)
{