summaryrefslogtreecommitdiff
path: root/apt-pkg/contrib/sha2.h
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2015-08-11 15:58:03 +0200
committerJulian Andres Klode <jak@debian.org>2015-08-11 15:58:42 +0200
commit6d7122b5356c0b4d8f51aafdfc1c232392fca695 (patch)
tree233b80706bcb3b07973220a937b56b45dbe4caa2 /apt-pkg/contrib/sha2.h
parent17a2487fc69a86508f2319068296463698590d2b (diff)
Annotate more methods with APT_OVERRIDE
Gbp-Dch: ignore Reported-By: g++ -Wsuggest-override Thanks: g++ -Wsuggest-override
Diffstat (limited to 'apt-pkg/contrib/sha2.h')
-rw-r--r--apt-pkg/contrib/sha2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/sha2.h b/apt-pkg/contrib/sha2.h
index 70e8384f2..8b4bdd439 100644
--- a/apt-pkg/contrib/sha2.h
+++ b/apt-pkg/contrib/sha2.h
@@ -34,7 +34,7 @@ class SHA2SummationBase : public SummationImplementation
protected:
bool Done;
public:
- bool Add(const unsigned char *inbuf, unsigned long long len) = 0;
+ bool Add(const unsigned char *inbuf, unsigned long long len) APT_OVERRIDE = 0;
void Result();
};