ISO C does not allow extra ';' outside of a function; #5107

This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-11-02 22:58:33 +09:00
parent 436765eb94
commit ac51a58683
+2 -2
View File
@@ -168,8 +168,8 @@ mrb_local_variables(mrb_state *mrb, mrb_value self)
return mrb_hash_keys(mrb, vars);
}
KHASH_DECLARE(st, mrb_sym, char, FALSE);
KHASH_DEFINE(st, mrb_sym, char, FALSE, kh_int_hash_func, kh_int_hash_equal);
KHASH_DECLARE(st, mrb_sym, char, FALSE)
KHASH_DEFINE(st, mrb_sym, char, FALSE, kh_int_hash_func, kh_int_hash_equal)
union mt_ptr {
struct RProc *proc;