diff options
author | 2016-08-04 22:09:28 -0700 | |
---|---|---|
committer | 2016-08-04 22:16:44 -0700 | |
commit | 1ad5f5ce2025f1db0ea5dd1fcf72223430f143b4 (patch) | |
tree | 9cc653b6e2e4650168790a0dba9c86b2ce2a0ae1 /paludis/repositories/e/e_mask.cc | |
parent | d81457e4208ba6ed94b86e430c567e4c0e1f7046 (diff) | |
download | paludis-1ad5f5ce2025f1db0ea5dd1fcf72223430f143b4.tar.gz paludis-1ad5f5ce2025f1db0ea5dd1fcf72223430f143b4.tar.xz |
modernize: use override annotations
Automated addition of override to overridden functions. NFC.
Diffstat (limited to 'paludis/repositories/e/e_mask.cc')
-rw-r--r-- | paludis/repositories/e/e_mask.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/paludis/repositories/e/e_mask.cc b/paludis/repositories/e/e_mask.cc index 96d411280..36499d315 100644 --- a/paludis/repositories/e/e_mask.cc +++ b/paludis/repositories/e/e_mask.cc @@ -38,11 +38,11 @@ namespace public: EUnacceptedMask(const char, const std::string &, const std::string &); - ~EUnacceptedMask(); + ~EUnacceptedMask() override; - char key() const; - const std::string description() const; - const std::string unaccepted_key_name() const; + char key() const override; + const std::string description() const override; + const std::string unaccepted_key_name() const override; }; } |