From: Source Maintenance Date: Wed, 18 Nov 2015 18:12:15 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_4_0_3~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=895171b10551ccb5ab59b56a967c5d95cb5e439c;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/CacheDigest.cc b/src/CacheDigest.cc index 640f8560cd..900981ec58 100644 --- a/src/CacheDigest.cc +++ b/src/CacheDigest.cc @@ -48,12 +48,12 @@ CacheDigest::init(int newCapacity) } CacheDigest::CacheDigest(int aCapacity, int bpe) : - mask(nullptr), - mask_size(0), - capacity(0), - bits_per_entry(bpe), - count(0), - del_count(0) + mask(nullptr), + mask_size(0), + capacity(0), + bits_per_entry(bpe), + count(0), + del_count(0) { assert(SQUID_MD5_DIGEST_LENGTH == 16); /* our hash functions rely on 16 byte keys */ updateCapacity(aCapacity);