summaryrefslogtreecommitdiff
path: root/lea_simd.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-10-03 20:44:33 -0400
committerJeffrey Walton <noloader@gmail.com>2019-10-03 20:44:33 -0400
commit883dbce74a3d6d66fd0f57f383284aef378db47c (patch)
treeebb1b1599a1e2f147a0db4dd774b30f50f553014 /lea_simd.cpp
parent589c25264a3b15fae101962f8a8a334a03c90075 (diff)
downloadcryptopp-git-883dbce74a3d6d66fd0f57f383284aef378db47c.tar.gz
Remove double semicolons after sed'ing defines
Also see https://github.com/weidai11/cryptopp/issues/889
Diffstat (limited to 'lea_simd.cpp')
-rw-r--r--lea_simd.cpp4
1 files changed, 2 insertions, 2 deletions
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 <unsigned int IDX>
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 <unsigned int IDX>
inline uint32x4_t UnpackNEON(const uint32x4_t& v)
{
// Should not be instantiated
- CRYPTOPP_ASSERT(0);;
+ CRYPTOPP_ASSERT(0);
return vmovq_n_u32(0);
}