aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/parsing.cpp
diff options
context:
space:
mode:
authorTom <[email protected]>2019-10-18 16:40:38 +0100
committerTom <[email protected]>2019-10-18 16:46:09 +0100
commit8eb202ec8b58d1825436cfd8facab89285977074 (patch)
tree0540c44a007b84b1745503c068d27a4f7ee74b41 /src/lib/utils/parsing.cpp
parentbbef28707d07cf0729911144be7d18a3061b2fef (diff)
Suppress unused warning.
Diffstat (limited to 'src/lib/utils/parsing.cpp')
-rw-r--r--src/lib/utils/parsing.cpp1
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
}