From: Source Maintenance Date: Tue, 28 Jul 2015 12:12:10 +0000 (+0000) Subject: SourceFormat Enforcement X-Git-Tag: merge-candidate-3-v1~24^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4be4fedca03c3345f19c9f364a2975b98fd8a4ab;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/auth/digest/Config.cc b/src/auth/digest/Config.cc index 46f2bf1a3b..4b2d95cebf 100644 --- a/src/auth/digest/Config.cc +++ b/src/auth/digest/Config.cc @@ -65,7 +65,7 @@ enum http_digest_attr_type { }; static const LookupTable::Record - DigestAttrs[] = { +DigestAttrs[] = { {"username", DIGEST_USERNAME}, {"realm", DIGEST_REALM}, {"qop", DIGEST_QOP}, diff --git a/src/base/LookupTable.h b/src/base/LookupTable.h index e50130ee6f..ac1d33c2d9 100644 --- a/src/base/LookupTable.h +++ b/src/base/LookupTable.h @@ -60,3 +60,4 @@ private: }; #endif /* SQUID_LOOKUPTABLE_H_ */ + diff --git a/src/tests/testLookupTable.cc b/src/tests/testLookupTable.cc index 268f839451..d97b4cb041 100644 --- a/src/tests/testLookupTable.cc +++ b/src/tests/testLookupTable.cc @@ -25,14 +25,14 @@ enum EnumData { }; static const LookupTable::Record tableData[] = { - {"one", ENUM_1}, - {"two", ENUM_2}, - {"three", ENUM_3}, - {"four", ENUM_4}, - {"five", ENUM_5}, - {"six", ENUM_6}, - {"seven", ENUM_7}, - {nullptr, ENUM_INVALID} + {"one", ENUM_1}, + {"two", ENUM_2}, + {"three", ENUM_3}, + {"four", ENUM_4}, + {"five", ENUM_5}, + {"six", ENUM_6}, + {"seven", ENUM_7}, + {nullptr, ENUM_INVALID} }; void @@ -51,3 +51,4 @@ testLookupTable::testLookupTableLookup() // element not found CPPUNIT_ASSERT_EQUAL(lt.lookup(SBuf("eleventy")), ENUM_INVALID); } + diff --git a/src/tests/testLookupTable.h b/src/tests/testLookupTable.h index 545db6e49d..22a9f94e97 100644 --- a/src/tests/testLookupTable.h +++ b/src/tests/testLookupTable.h @@ -21,3 +21,4 @@ public: }; #endif /* SQUID_TESTLOOKUPTABLE_H_ */ +