diff options
author | Jack Lloyd <[email protected]> | 2017-10-01 09:44:43 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-02 10:23:08 -0400 |
commit | 4fbd7d243481f81a60daaca3ef904ddf14026c26 (patch) | |
tree | 7e5c1bd8578ac1c5c8730d924a137a2309cd9346 /src/lib/x509/certstor_sql | |
parent | 78fc119ed900210268931abf606f0682e3148a77 (diff) |
Remove redundant "virtual override" declarations.
Diffstat (limited to 'src/lib/x509/certstor_sql')
-rw-r--r-- | src/lib/x509/certstor_sql/certstor_sql.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/x509/certstor_sql/certstor_sql.h b/src/lib/x509/certstor_sql/certstor_sql.h index 962b107a5..88e3968bf 100644 --- a/src/lib/x509/certstor_sql/certstor_sql.h +++ b/src/lib/x509/certstor_sql/certstor_sql.h @@ -40,7 +40,7 @@ class BOTAN_PUBLIC_API(2,0) Certificate_Store_In_SQL : public Certificate_Store /** * Returns the first certificate with matching subject DN and optional key ID. */ - virtual std::shared_ptr<const X509_Certificate> + std::shared_ptr<const X509_Certificate> find_cert(const X509_DN& subject_dn, const std::vector<uint8_t>& key_id) const override; std::shared_ptr<const X509_Certificate> @@ -52,7 +52,7 @@ class BOTAN_PUBLIC_API(2,0) Certificate_Store_In_SQL : public Certificate_Store /** * Returns all subject DNs known to the store instance. */ - virtual std::vector<X509_DN> all_subjects() const override; + std::vector<X509_DN> all_subjects() const override; /** * Inserts "cert" into the store, returns false if the certificate is @@ -97,7 +97,7 @@ class BOTAN_PUBLIC_API(2,0) Certificate_Store_In_SQL : public Certificate_Store /** * Generates a CRL for all certificates issued by the given issuer. */ - virtual std::shared_ptr<const X509_CRL> + std::shared_ptr<const X509_CRL> find_crl_for(const X509_Certificate& issuer) const override; private: |