summaryrefslogtreecommitdiffhomepage
path: root/src/variable.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/variable.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/variable.c')
-rw-r--r--src/variable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/variable.c b/src/variable.c
index 7d583da40..6907a8e2a 100644
--- a/src/variable.c
+++ b/src/variable.c
@@ -256,7 +256,7 @@ iv_free(mrb_state *mrb, iv_tbl *t)
#endif
KHASH_DECLARE(iv, mrb_sym, mrb_value, 1)
-KHASH_DEFINE(iv, mrb_sym, mrb_value, 1, kh_int_hash_func, kh_int_hash_equal);
+KHASH_DEFINE(iv, mrb_sym, mrb_value, 1, kh_int_hash_func, kh_int_hash_equal)
typedef struct iv_tbl {
khash_t(iv) h;