aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/asn1/x509_dn.h
diff options
context:
space:
mode:
authorDaniel Seither <[email protected]>2015-07-30 16:06:20 +0200
committerDaniel Seither <[email protected]>2015-07-30 16:06:20 +0200
commitb591ff640afc80725474ef65014fadf47769c0c2 (patch)
treefe5877ffd8650bef6a7c4479718c60a1f90874bf /src/lib/asn1/x509_dn.h
parent656ff74c7d951712cba7d032c2d0a4d5119aa952 (diff)
asn1: Add missing overrides
Diffstat (limited to 'src/lib/asn1/x509_dn.h')
-rw-r--r--src/lib/asn1/x509_dn.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/asn1/x509_dn.h b/src/lib/asn1/x509_dn.h
index 43e0103bd..cf1fbc03b 100644
--- a/src/lib/asn1/x509_dn.h
+++ b/src/lib/asn1/x509_dn.h
@@ -22,8 +22,8 @@ namespace Botan {
class BOTAN_DLL X509_DN : public ASN1_Object
{
public:
- void encode_into(class DER_Encoder&) const;
- void decode_from(class BER_Decoder&);
+ void encode_into(class DER_Encoder&) const override;
+ void decode_from(class BER_Decoder&) override;
std::multimap<OID, std::string> get_attributes() const;
std::vector<std::string> get_attribute(const std::string&) const;