summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2019-05-06 16:29:40 +0200
committerJulian Andres Klode <julian.klode@canonical.com>2019-05-06 16:29:40 +0200
commit3bec42fdf01eb3f7403876979023ad952228ee73 (patch)
tree14757b951a856b43b0fd0ab899264af43613eef6 /apt-pkg
parentf6affb0a6e135ba8591be6623f880bd9344ce52a (diff)
CMake: Enforce "override" use on overriden methods
This ensures that we do not accidentally stop overriding a method because it's signature changed in an API break.
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/deb/deblistparser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/deb/deblistparser.h b/apt-pkg/deb/deblistparser.h
index ad2b947fe..8143f855f 100644
--- a/apt-pkg/deb/deblistparser.h
+++ b/apt-pkg/deb/deblistparser.h
@@ -152,7 +152,7 @@ class APT_HIDDEN debTranslationsParser : public debListParser
class APT_HIDDEN debStatusListParser : public debListParser
{
public:
- virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver);
+ virtual bool ParseStatus(pkgCache::PkgIterator &Pkg,pkgCache::VerIterator &Ver) APT_OVERRIDE;
explicit debStatusListParser(FileFd *File)
: debListParser(File) {};
};