summaryrefslogtreecommitdiff
path: root/asn.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2021-03-09 21:59:35 -0500
committerJeffrey Walton <noloader@gmail.com>2021-03-09 21:59:35 -0500
commit5c4c631e9291c57e237d6d40bb2c3456eb597f3d (patch)
treeee5a6d5e5850c25ec0d8a11465837aecd80b273c /asn.h
parentde45ebeec15c8788ab721370e085f6299da06ee4 (diff)
downloadcryptopp-git-5c4c631e9291c57e237d6d40bb2c3456eb597f3d.tar.gz
Remove cast from DefaultTag in asn.h
Diffstat (limited to 'asn.h')
-rw-r--r--asn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/asn.h b/asn.h
index ea4a7d87..84a739c5 100644
--- a/asn.h
+++ b/asn.h
@@ -607,7 +607,7 @@ public:
/// \param inQueue input byte queue
/// \details BERSetDecoder uses DefaultTag
explicit BERSetDecoder(BERSetDecoder &inQueue)
- : BERGeneralDecoder(inQueue, static_cast<int>(DefaultTag)) {}
+ : BERGeneralDecoder(inQueue, DefaultTag) {}
/// \brief Construct an ASN.1 decoder
/// \param inQueue input byte queue