diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-09-30 03:06:56 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-09-30 03:06:56 +0900 |
| commit | 9ddde3be391874b2ba3c7bb2fe510421aaa191c3 (patch) | |
| tree | e5f3b6c704b5b512bc5fc9500e5ec13f0c1bcc9a /include | |
| parent | 4621907fcad68ca43f9435c0dcaea9238c55e16e (diff) | |
| parent | 40e8a90e8985ea875e6038e8d16706a594a412f7 (diff) | |
| download | mruby-9ddde3be391874b2ba3c7bb2fe510421aaa191c3.tar.gz mruby-9ddde3be391874b2ba3c7bb2fe510421aaa191c3.zip | |
Merge pull request #4742 from dearblue/mrb_hash_value
Remove unnecessary type `mrb_hash_value`
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/hash.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/mruby/hash.h b/include/mruby/hash.h index e75a769fd..0052a1105 100644 --- a/include/mruby/hash.h +++ b/include/mruby/hash.h @@ -197,13 +197,6 @@ MRB_API mrb_value mrb_hash_dup(mrb_state *mrb, mrb_value hash); */ MRB_API void mrb_hash_merge(mrb_state *mrb, mrb_value hash1, mrb_value hash2); -/* declaration of struct mrb_hash_value */ -/* be careful when you touch the internal */ -typedef struct { - mrb_value v; - mrb_int n; -} mrb_hash_value; - /* RHASH_TBL allocates st_table if not available. */ #define RHASH(obj) ((struct RHash*)(mrb_ptr(obj))) #define RHASH_TBL(h) (RHASH(h)->ht) |
