From 5d63a9da40b452d0455923b6838a961224c933bc Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Mon, 21 Oct 2019 17:45:27 +0900 Subject: [PATCH] [Bug #16121] adjusted indent [ci skip] --- hash.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/hash.c b/hash.c index 705ec31252..2543a6117c 100644 --- a/hash.c +++ b/hash.c @@ -2833,23 +2833,23 @@ rb_hash_replace(VALUE hash, VALUE hash2) COPY_DEFAULT(hash, hash2); if (RHASH_AR_TABLE_P(hash)) { - if (RHASH_AR_TABLE_P(hash2)) { - ar_clear(hash); - } - else { - ar_free_and_clear_table(hash); - RHASH_ST_TABLE_SET(hash, st_init_table_with_size(RHASH_TYPE(hash2), RHASH_SIZE(hash2))); - } + if (RHASH_AR_TABLE_P(hash2)) { + ar_clear(hash); + } + else { + ar_free_and_clear_table(hash); + RHASH_ST_TABLE_SET(hash, st_init_table_with_size(RHASH_TYPE(hash2), RHASH_SIZE(hash2))); + } } else { - if (RHASH_AR_TABLE_P(hash2)) { - st_free_table(RHASH_ST_TABLE(hash)); - RHASH_ST_CLEAR(hash); - } - else { - st_clear(RHASH_ST_TABLE(hash)); - RHASH_TBL_RAW(hash)->type = RHASH_ST_TABLE(hash2)->type; - } + if (RHASH_AR_TABLE_P(hash2)) { + st_free_table(RHASH_ST_TABLE(hash)); + RHASH_ST_CLEAR(hash); + } + else { + st_clear(RHASH_ST_TABLE(hash)); + RHASH_TBL_RAW(hash)->type = RHASH_ST_TABLE(hash2)->type; + } } rb_hash_foreach(hash2, rb_hash_rehash_i, (VALUE)hash);