diff options
-rw-r--r-- | src/lib/asn1/asn1_oid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/asn1/asn1_oid.h b/src/lib/asn1/asn1_oid.h index 14600129a..8f3f20f2f 100644 --- a/src/lib/asn1/asn1_oid.h +++ b/src/lib/asn1/asn1_oid.h @@ -63,7 +63,7 @@ class BOTAN_PUBLIC_API(2,0) OID final : public ASN1_Object * Construct an OID from a string. * @param str a string in the form "a.b.c" etc., where a,b,c are numbers */ - explicit OID(const std::string& str = ""); + OID(const std::string& str = ""); private: std::vector<uint32_t> m_id; }; |