]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/HttpHeader.cc
Source Format Enforcement (#1132)
[thirdparty/squid.git] / src / HttpHeader.cc
index baa10dfb36f106583dbff92ffa7242d06a500909..c1fbcd0160dfbe8117b1eb12cb436ea3835d3a1c 100644 (file)
@@ -76,17 +76,18 @@ static HttpHeaderMask ReplyHeadersMask;     /* set run-time using ReplyHeaders *
 /* header accounting */
 // NP: keep in sync with enum http_hdr_owner_type
 static std::array<HttpHeaderStat, hoEnd> HttpHeaderStats = {{
-    HttpHeaderStat(/*hoNone*/ "all", nullptr),
+        HttpHeaderStat(/*hoNone*/ "all", nullptr),
 #if USE_HTCP
-    HttpHeaderStat(/*hoHtcpReply*/ "HTCP reply", &ReplyHeadersMask),
+        HttpHeaderStat(/*hoHtcpReply*/ "HTCP reply", &ReplyHeadersMask),
 #endif
-    HttpHeaderStat(/*hoRequest*/ "request", &RequestHeadersMask),
-    HttpHeaderStat(/*hoReply*/ "reply", &ReplyHeadersMask)
+        HttpHeaderStat(/*hoRequest*/ "request", &RequestHeadersMask),
+        HttpHeaderStat(/*hoReply*/ "reply", &ReplyHeadersMask)
 #if USE_OPENSSL
-    , HttpHeaderStat(/*hoErrorDetail*/ "error detail templates", nullptr)
+        , HttpHeaderStat(/*hoErrorDetail*/ "error detail templates", nullptr)
 #endif
-    /* hoEnd */
-}};
+        /* hoEnd */
+    }
+};
 
 static int HeaderEntryParsedCount = 0;