diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-07-19 06:15:47 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-07-19 06:35:15 +0900 |
commit | a036a8a038820660a6903af60376a2df502d0266 (patch) | |
tree | 1f29d643298cc8cc91fed98a18b363cec20d9884 /hash.c | |
parent | a027c4b5b0bc1d6786852249847e8a2f56404d1a (diff) |
Adjust styles and indents
Diffstat (limited to 'hash.c')
-rw-r--r-- | hash.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -564,7 +564,8 @@ hash_ar_table_set(VALUE hash, ar_table *ar) #define RHASH_AR_TABLE_SIZE_INC(h) HASH_AR_TABLE_SIZE_ADD(h, 1) static inline void -RHASH_AR_TABLE_SIZE_DEC(VALUE h) { +RHASH_AR_TABLE_SIZE_DEC(VALUE h) +{ HASH_ASSERT(RHASH_AR_TABLE_P(h)); int new_size = RHASH_AR_TABLE_SIZE(h) - 1; |