diff options
Diffstat (limited to 'src/asn1/asn1_oid.h')
-rw-r--r-- | src/asn1/asn1_oid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asn1/asn1_oid.h b/src/asn1/asn1_oid.h index 85e863907..9d712b256 100644 --- a/src/asn1/asn1_oid.h +++ b/src/asn1/asn1_oid.h @@ -27,7 +27,7 @@ class BOTAN_DLL OID : public ASN1_Object * Find out whether this OID is empty * @return true is no OID value is set */ - bool is_empty() const { return id.size() == 0; } + bool empty() const { return id.size() == 0; } /** * Get this OID as list (vector) of its components. |