From 883dbce74a3d6d66fd0f57f383284aef378db47c Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 3 Oct 2019 20:44:33 -0400 Subject: Remove double semicolons after sed'ing defines Also see https://github.com/weidai11/cryptopp/issues/889 --- lea_simd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lea_simd.cpp') diff --git a/lea_simd.cpp b/lea_simd.cpp index ee2a5697..85ff6a3a 100644 --- a/lea_simd.cpp +++ b/lea_simd.cpp @@ -181,7 +181,7 @@ template inline uint32x4_t UnpackNEON(const uint32x4_t& a, const uint32x4_t& b, const uint32x4_t& c, const uint32x4_t& d) { // Should not be instantiated - CRYPTOPP_ASSERT(0);; + CRYPTOPP_ASSERT(0); return vmovq_n_u32(0); } @@ -221,7 +221,7 @@ template inline uint32x4_t UnpackNEON(const uint32x4_t& v) { // Should not be instantiated - CRYPTOPP_ASSERT(0);; + CRYPTOPP_ASSERT(0); return vmovq_n_u32(0); } -- cgit v1.2.1