summaryrefslogtreecommitdiff
path: root/hash.c
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-19 06:15:47 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-07-19 06:35:15 +0900
commita036a8a038820660a6903af60376a2df502d0266 (patch)
tree1f29d643298cc8cc91fed98a18b363cec20d9884 /hash.c
parenta027c4b5b0bc1d6786852249847e8a2f56404d1a (diff)
Adjust styles and indents
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 9c2da83fee..f458fd71aa 100644
--- a/hash.c
+++ b/hash.c
@@ -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;