aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/tls_extensions.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-01-27 12:02:00 -0500
committerJack Lloyd <[email protected]>2018-01-27 12:02:00 -0500
commit7f7feb41880d87ea170633b47f5dede30ea528de (patch)
treea1732c98087a76ccc2bfc40f4b0ce846902632a5 /src/lib/tls/tls_extensions.h
parent7e54475fa3cae8f8f6f8072993fa8cc079bce9a1 (diff)
Fix a few warnings
Diffstat (limited to 'src/lib/tls/tls_extensions.h')
-rw-r--r--src/lib/tls/tls_extensions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/tls/tls_extensions.h b/src/lib/tls/tls_extensions.h
index 114b16489..5ba3c0b8e 100644
--- a/src/lib/tls/tls_extensions.h
+++ b/src/lib/tls/tls_extensions.h
@@ -445,9 +445,9 @@ class BOTAN_UNSTABLE_API Unknown_Extension final : public Extension
const std::vector<uint8_t>& value() { return m_value; }
- bool empty() const { return false; }
+ bool empty() const override { return false; }
- Handshake_Extension_Type type() const { return m_type; }
+ Handshake_Extension_Type type() const override { return m_type; }
private:
Handshake_Extension_Type m_type;