From 442d9ee4351787eec6e0efa7a302dc02e4b22278 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Tue, 6 Feb 2024 20:48:08 -0500 Subject: [PATCH] Update documentation --- asn.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/asn.h b/asn.h index 41ecff3c4..8a1e32a8c 100644 --- a/asn.h +++ b/asn.h @@ -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;}