]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/mgr/IntParam.cc
Source Format Enforcement (#763)
[thirdparty/squid.git] / src / mgr / IntParam.cc
index 2ea19bec8f7a747098e6d92d8573ceece6228132..a33370312661d434a7b18d47e3b7bbe1193b4da2 100644 (file)
@@ -1,20 +1,26 @@
 /*
- * DEBUG: section 16    Cache Manager API
+ * Copyright (C) 1996-2021 The Squid Software Foundation and contributors
  *
+ * Squid software is distributed under GPLv2+ license and includes
+ * contributions from numerous individuals and organizations.
+ * Please see the COPYING and CONTRIBUTORS files for details.
  */
 
+/* DEBUG: section 16    Cache Manager API */
+
 #include "squid.h"
 #include "base/TextException.h"
+#include "Debug.h"
 #include "ipc/TypedMsgHdr.h"
 #include "mgr/IntParam.h"
 
 Mgr::IntParam::IntParam():
-        QueryParam(QueryParam::ptInt), array()
+    QueryParam(QueryParam::ptInt), array()
 {
 }
 
 Mgr::IntParam::IntParam(const std::vector<int>& anArray):
-        QueryParam(QueryParam::ptInt), array(anArray)
+    QueryParam(QueryParam::ptInt), array(anArray)
 {
 }
 
@@ -43,3 +49,4 @@ Mgr::IntParam::value() const
 {
     return array;
 }
+