diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-11-30 19:12:49 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-11-30 19:12:49 -0800 |
| commit | 5947113f784a349e1ee4c0e1d708122090567f86 (patch) | |
| tree | 782321eb0f73e686e43a9e91c38da748de623ded /src/hash.c | |
| parent | 620fd92f090cbfa0f3cf81656792202bfa780a66 (diff) | |
| parent | ee0563823d54b507c0dfdce4fbdb20c80fe3aadc (diff) | |
| download | mruby-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/hash.c')
| -rw-r--r-- | src/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hash.c b/src/hash.c index c74ac837b..c7a419250 100644 --- a/src/hash.c +++ b/src/hash.c @@ -29,8 +29,8 @@ mrb_hash_ht_hash_equal(mrb_state *mrb, mrb_value a, mrb_value b) return mrb_eql(mrb, a, b); } -KHASH_DECLARE(ht, mrb_value, mrb_value, 1); -KHASH_DEFINE (ht, mrb_value, mrb_value, 1, mrb_hash_ht_hash_func, mrb_hash_ht_hash_equal); +KHASH_DECLARE(ht, mrb_value, mrb_value, 1) +KHASH_DEFINE (ht, mrb_value, mrb_value, 1, mrb_hash_ht_hash_func, mrb_hash_ht_hash_equal) static void mrb_hash_modify(mrb_state *mrb, mrb_value hash); |
