]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/acl/AnyOf.cc
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / acl / AnyOf.cc
index a07182d7fbd619cefe512d5c31971de7545ea5c4..12dc7d32f3b3b2c1979988c1140e476fa162378e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2014 The Squid Software Foundation and contributors
+ * Copyright (C) 1996-2023 The Squid Software Foundation and contributors
  *
  * Squid software is distributed under GPLv2+ license and includes
  * contributions from numerous individuals and organizations.
@@ -15,12 +15,6 @@ Acl::AnyOf::typeString() const
     return "any-of";
 }
 
-ACL *
-Acl::AnyOf::clone() const
-{
-    return new AnyOf;
-}
-
 // called once per "acl name any-of name1 name2 ...." line
 // but since multiple lines are ORed, the line boundary does not matter,
 // so we flatten the tree into one line/level here to minimize overheads