From 9013cb60fb1b28537a185fc98486d74e7cf39ea1 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 14 Oct 2019 12:30:10 -0400 Subject: Fix semicolons yet again (GH #889) So it looks like sed added a '\r' between the closing paren and the semi. Grepping for '^;' failed because the '\r' was considered part of the previous line, so it showed no hits. I finally had to write a C program to properly identify and fix those damn stray semicolons. --- shake.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shake.h') diff --git a/shake.h b/shake.h index 698215b2..0eaab43b 100644 --- a/shake.h +++ b/shake.h @@ -66,8 +66,8 @@ template class SHAKE_Final : public SHAKE { public: - CRYPTOPP_CONSTANT(DIGESTSIZE = (T_Strength == 128 ? 32 : 64)) ; - CRYPTOPP_CONSTANT(BLOCKSIZE = (T_Strength == 128 ? 1344/8 : 1088/8)) ; + CRYPTOPP_CONSTANT(DIGESTSIZE = (T_Strength == 128 ? 32 : 64)); + CRYPTOPP_CONSTANT(BLOCKSIZE = (T_Strength == 128 ? 1344/8 : 1088/8)); static std::string StaticAlgorithmName() { return "SHAKE-" + IntToString(T_Strength); } -- cgit v1.2.1