]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorSource Maintenance <squidadm@squid-cache.org>
Wed, 18 Nov 2015 18:12:15 +0000 (18:12 +0000)
committerSource Maintenance <squidadm@squid-cache.org>
Wed, 18 Nov 2015 18:12:15 +0000 (18:12 +0000)
src/CacheDigest.cc

index 640f8560cde3f9c3c8fd1a4dd9e49ed70d115ac7..900981ec58f7f6e7d8bf7e31853d49771f06c183 100644 (file)
@@ -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);