From 1f4a27b80ea0c4ea09101d115a1ca98b7be45252 Mon Sep 17 00:00:00 2001 From: Michel Hermier Date: Mon, 3 Jan 2022 22:27:02 +0100 Subject: [PATCH] LibCrypto: Remove spurious `;` --- Userland/Libraries/LibCrypto/Hash/HashFunction.h | 12 ++++++------ Userland/Libraries/LibCrypto/Hash/SHA1.h | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Userland/Libraries/LibCrypto/Hash/HashFunction.h b/Userland/Libraries/LibCrypto/Hash/HashFunction.h index dedde42953..a766aa8540 100644 --- a/Userland/Libraries/LibCrypto/Hash/HashFunction.h +++ b/Userland/Libraries/LibCrypto/Hash/HashFunction.h @@ -21,15 +21,15 @@ public: using DigestType = DigestT; - constexpr static size_t block_size() { return BlockSize; }; - constexpr static size_t digest_size() { return DigestSize; }; + constexpr static size_t block_size() { return BlockSize; } + constexpr static size_t digest_size() { return DigestSize; } virtual void update(const u8*, size_t) = 0; - void update(Bytes buffer) { update(buffer.data(), buffer.size()); }; - void update(ReadonlyBytes buffer) { update(buffer.data(), buffer.size()); }; - void update(const ByteBuffer& buffer) { update(buffer.data(), buffer.size()); }; - void update(StringView string) { update((const u8*)string.characters_without_null_termination(), string.length()); }; + void update(Bytes buffer) { update(buffer.data(), buffer.size()); } + void update(ReadonlyBytes buffer) { update(buffer.data(), buffer.size()); } + void update(const ByteBuffer& buffer) { update(buffer.data(), buffer.size()); } + void update(StringView string) { update((const u8*)string.characters_without_null_termination(), string.length()); } virtual DigestType peek() = 0; virtual DigestType digest() = 0; diff --git a/Userland/Libraries/LibCrypto/Hash/SHA1.h b/Userland/Libraries/LibCrypto/Hash/SHA1.h index 27756c3ba3..a4832785dc 100644 --- a/Userland/Libraries/LibCrypto/Hash/SHA1.h +++ b/Userland/Libraries/LibCrypto/Hash/SHA1.h @@ -61,7 +61,7 @@ public: virtual String class_name() const override { return "SHA1"; - }; + } inline virtual void reset() override { m_data_length = 0;