Update documentation

This commit is contained in:
Jeffrey Walton 2024-02-06 20:48:08 -05:00
parent 5cf87aed66
commit 442d9ee435
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

3
asn.h
View File

@ -936,8 +936,7 @@ inline OID operator+(const OID &lhs, unsigned long rhs);
/// \brief Print a OID value
/// \param out the output stream
/// \param oid the OID
inline std::ostream& operator<<(std::ostream& out, const OID &oid)
{ return oid.Print(out); }
inline std::ostream& operator<<(std::ostream& out, const OID &oid);
#else
inline bool operator==(const ::CryptoPP::OID &lhs, const ::CryptoPP::OID &rhs)
{return lhs.m_values == rhs.m_values;}