aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/hash
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-03-27 19:43:13 -0400
committerJack Lloyd <[email protected]>2019-03-27 19:43:13 -0400
commit07dd5c11a7893852f8b08e136da31a9aaa66f1ea (patch)
tree5824d89fc34a051d024e9eb27f5467c1e9a4f2d6 /src/lib/hash
parent87fb7334de6a0f4b8f990e53545c5a46478b0f59 (diff)
Fix some extra semicolons
Diffstat (limited to 'src/lib/hash')
-rw-r--r--src/lib/hash/streebog/streebog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hash/streebog/streebog.h b/src/lib/hash/streebog/streebog.h
index 2c5928d0e..2a98beb4e 100644
--- a/src/lib/hash/streebog/streebog.h
+++ b/src/lib/hash/streebog/streebog.h
@@ -24,7 +24,7 @@ class BOTAN_PUBLIC_API(2,2) Streebog : public HashFunction
HashFunction* clone() const override { return new Streebog(m_output_bits); }
void clear() override;
std::string name() const override;
- size_t hash_block_size() const override { return 64; };
+ size_t hash_block_size() const override { return 64; }
std::unique_ptr<HashFunction> copy_state() const override;