aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-09-30 12:47:13 -0400
committerJack Lloyd <[email protected]>2017-09-30 12:47:13 -0400
commita99f84d651ebd37de172e782bf26dfeba44d1f66 (patch)
tree2ca033f099f2feeb878d3cc7d79fc0b116869653
parentae3ee48ba91961299ec68e1b6a55e9e9d91a2491 (diff)
Retract explicit on OID
This conversion is often useful
-rw-r--r--src/lib/asn1/asn1_oid.h2
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;
};