summaryrefslogtreecommitdiff
path: root/asn.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-04-06 02:29:08 -0400
committerJeffrey Walton <noloader@gmail.com>2018-04-06 02:29:08 -0400
commit64a15cf51b8f1868d1b076d4efa6154aba0bc963 (patch)
treeb0a2c9241785b735705ba547634825ec7e05b4c8 /asn.h
parent62a9574f3fd60cd5cb6d34841e20b63f239e166f (diff)
downloadcryptopp-git-64a15cf51b8f1868d1b076d4efa6154aba0bc963.tar.gz
Order of initialization for ASN.1 decoders
Diffstat (limited to 'asn.h')
-rw-r--r--asn.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/asn.h b/asn.h
index b3c71629..30620f5d 100644
--- a/asn.h
+++ b/asn.h
@@ -283,11 +283,6 @@ private:
lword ReduceLength(lword delta);
};
-// GCC (and likely other compilers) identify the explicit DERGeneralEncoder as a copy constructor;
-// and not a constructor. We had to remove the default asnTag value to point the compiler in the
-// proper direction. We did not break the library or versioning based on the output of
-// `nm --demangle libcryptopp.a | grep DERGeneralEncoder::DERGeneralEncoder | grep -v " U "`.
-
/// \brief DER General Encoder
class CRYPTOPP_DLL DERGeneralEncoder : public ByteQueue
{