summaryrefslogtreecommitdiffhomepage
path: root/src/class.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2012-11-30 19:12:49 -0800
committerYukihiro "Matz" Matsumoto <[email protected]>2012-11-30 19:12:49 -0800
commit5947113f784a349e1ee4c0e1d708122090567f86 (patch)
tree782321eb0f73e686e43a9e91c38da748de623ded /src/class.c
parent620fd92f090cbfa0f3cf81656792202bfa780a66 (diff)
parentee0563823d54b507c0dfdce4fbdb20c80fe3aadc (diff)
downloadmruby-5947113f784a349e1ee4c0e1d708122090567f86.tar.gz
mruby-5947113f784a349e1ee4c0e1d708122090567f86.zip
Merge pull request #578 from tricknotes/stop-warning
Stop warning: extra ';' outside of a function
Diffstat (limited to 'src/class.c')
-rw-r--r--src/class.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/class.c b/src/class.c
index fbb7fb501..f6ca62e4a 100644
--- a/src/class.c
+++ b/src/class.c
@@ -15,7 +15,7 @@
#include "mruby/array.h"
#include "error.h"
-KHASH_DEFINE(mt, mrb_sym, struct RProc*, 1, kh_int_hash_func, kh_int_hash_equal);
+KHASH_DEFINE(mt, mrb_sym, struct RProc*, 1, kh_int_hash_func, kh_int_hash_equal)
typedef struct fc_result {
mrb_sym name;