From: Fred Morcos Date: Wed, 15 Feb 2023 15:07:58 +0000 (+0100) Subject: Remove operator< from PKCS11DNSCryptoKeyEngine X-Git-Tag: dnsdist-1.8.0-rc1~3^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2ef4900907a6a06b3cbac70c43a8bd593a4bb0f;p=thirdparty%2Fpdns.git Remove operator< from PKCS11DNSCryptoKeyEngine --- diff --git a/pdns/pkcs11signers.hh b/pdns/pkcs11signers.hh index b207d048cb..a54e83f3fa 100644 --- a/pdns/pkcs11signers.hh +++ b/pdns/pkcs11signers.hh @@ -34,10 +34,6 @@ class PKCS11DNSCryptoKeyEngine : public DNSCryptoKeyEngine PKCS11DNSCryptoKeyEngine(unsigned int algorithm); ~PKCS11DNSCryptoKeyEngine(); - bool operator<(const PKCS11DNSCryptoKeyEngine& /* rhs */) const - { - return false; - } PKCS11DNSCryptoKeyEngine(const PKCS11DNSCryptoKeyEngine& orig); string getName() const override { return "P11 Kit PKCS#11"; };