diff options
author | Jack Lloyd <[email protected]> | 2019-10-19 18:26:52 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-10-19 18:26:52 -0400 |
commit | 98ad2ea0ff257efedcb4e4b818595e2e6387919f (patch) | |
tree | 0540c44a007b84b1745503c068d27a4f7ee74b41 | |
parent | bbef28707d07cf0729911144be7d18a3061b2fef (diff) | |
parent | 8eb202ec8b58d1825436cfd8facab89285977074 (diff) |
Merge GH #2163 Suppress warning
-rw-r--r-- | src/lib/utils/parsing.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/utils/parsing.cpp b/src/lib/utils/parsing.cpp index ae95b1a87..f3e74d386 100644 --- a/src/lib/utils/parsing.cpp +++ b/src/lib/utils/parsing.cpp @@ -201,6 +201,7 @@ std::vector<uint32_t> parse_asn1_oid(const std::string& oid) #if defined(BOTAN_HAS_ASN1) return OID(oid).get_components(); #else + BOTAN_UNUSED(oid); throw Not_Implemented("ASN1 support not available"); #endif } |