]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/acl/AnnotationData.h
Source Format Enforcement (#1234)
[thirdparty/squid.git] / src / acl / AnnotationData.h
index f1e07b5a915e278602c861a949667ed41eff94c0..2dd1288d10dd18edbef2f99c268edc67c08a75c5 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1996-2022 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.
@@ -22,10 +22,10 @@ public:
     ACLAnnotationData();
 
     /* ACLData<M> API */
-    virtual bool match(NotePairs::Entry *) { return true; }
-    virtual SBufList dump() const;
-    virtual void parse();
-    virtual bool empty() const { return notes->empty(); }
+    bool match(NotePairs::Entry *) override { return true; }
+    SBufList dump() const override;
+    void parse() override;
+    bool empty() const override { return notes->empty(); }
 
     /// Stores annotations into pairs.
     void annotate(NotePairs::Pointer pairs, const CharacterSet *delimiters, const AccessLogEntry::Pointer &al);