diff options
author | Jack Lloyd <[email protected]> | 2016-04-28 11:17:38 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-04-28 11:17:38 -0400 |
commit | 372f2683c2808afed1499d9a7668390170329d1c (patch) | |
tree | e6034b17eaedfb95b76282f11437e37ae22f3e89 /src/lib | |
parent | a9f7020a91adc0e437e11857b48cfe30357fa2e4 (diff) |
Add missing override
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/cert/x509/x509_ext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/cert/x509/x509_ext.h b/src/lib/cert/x509/x509_ext.h index caefcb855..8ea2f2da6 100644 --- a/src/lib/cert/x509/x509_ext.h +++ b/src/lib/cert/x509/x509_ext.h @@ -490,7 +490,7 @@ class BOTAN_DLL Unknown_Critical_Extension final : public Certificate_Extension std::string oid_name() const override { return "Unknown OID name"; } - bool should_encode() const { return false; } + bool should_encode() const override { return false; } std::vector<byte> encode_inner() const override; void decode_inner(const std::vector<byte>&) override; void contents_to(Data_Store&, Data_Store&) const override; |