diff options
author | itrofimow <i.trofimow@yandex.ru> | 2022-10-02 01:28:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-01 18:28:40 -0400 |
commit | eaa1bf572d6b4adb776cf236aaf53671eb356914 (patch) | |
tree | 26fc2dd9383e079c179385b6635439fde282224e | |
parent | cb6804da176377ea0e2fa73da19d56b7ee752a3e (diff) | |
download | cryptopp-git-eaa1bf572d6b4adb776cf236aaf53671eb356914.tar.gz |
Remove redundant semicolons to make compilers happy (PR #1165)
-rw-r--r-- | lsh256.cpp | 2 | ||||
-rw-r--r-- | lsh256_avx.cpp | 2 | ||||
-rw-r--r-- | lsh256_sse.cpp | 2 | ||||
-rw-r--r-- | lsh512.cpp | 2 | ||||
-rw-r--r-- | lsh512_avx.cpp | 2 | ||||
-rw-r--r-- | lsh512_sse.cpp | 2 |
6 files changed, 6 insertions, 6 deletions
@@ -394,7 +394,7 @@ inline void word_perm(lsh_u32 cv_l[8], lsh_u32 cv_r[8]) cv_l[7] = cv_r[5];
cv_r[5] = cv_r[3];
cv_r[3] = temp;
-};
+}
/* -------------------------------------------------------- *
* step function
diff --git a/lsh256_avx.cpp b/lsh256_avx.cpp index f5cb4401..a3bac453 100644 --- a/lsh256_avx.cpp +++ b/lsh256_avx.cpp @@ -319,7 +319,7 @@ inline void word_perm(lsh_u32 cv_l[8], lsh_u32 cv_r[8]) _mm256_storeu_si256(M256_CAST(cv_r),
_mm256_permute2x128_si256(temp,
_mm256_loadu_si256(CONST_M256_CAST(cv_r)), _MM_SHUFFLE(0,2,0,0)));
-};
+}
/* -------------------------------------------------------- *
* step function
diff --git a/lsh256_sse.cpp b/lsh256_sse.cpp index 5ede5b12..639b36ba 100644 --- a/lsh256_sse.cpp +++ b/lsh256_sse.cpp @@ -378,7 +378,7 @@ inline void word_perm(lsh_u32 cv_l[8], lsh_u32 cv_r[8]) _mm_storeu_si128(M128_CAST(cv_r+4),
_mm_loadu_si128(CONST_M128_CAST(cv_r+0)));
_mm_storeu_si128(M128_CAST(cv_r+0), temp);
-};
+}
/* -------------------------------------------------------- *
* step function
@@ -451,7 +451,7 @@ inline void word_perm(lsh_u64 cv_l[8], lsh_u64 cv_r[8]) cv_l[7] = cv_r[5];
cv_r[5] = cv_r[3];
cv_r[3] = temp;
-};
+}
/* -------------------------------------------------------- *
* step function
diff --git a/lsh512_avx.cpp b/lsh512_avx.cpp index 21a6b96d..e73234e4 100644 --- a/lsh512_avx.cpp +++ b/lsh512_avx.cpp @@ -396,7 +396,7 @@ inline void word_perm(lsh_u64 cv_l[8], lsh_u64 cv_r[8]) _mm256_storeu_si256(M256_CAST(cv_r+0), temp[0]);
_mm256_storeu_si256(M256_CAST(cv_r+4), temp[1]);
-};
+}
/* -------------------------------------------------------- *
* step function
diff --git a/lsh512_sse.cpp b/lsh512_sse.cpp index 9e0aea97..c6591239 100644 --- a/lsh512_sse.cpp +++ b/lsh512_sse.cpp @@ -560,7 +560,7 @@ inline void word_perm(lsh_u64 cv_l[8], lsh_u64 cv_r[8]) _mm_storeu_si128(M128_CAST(cv_r+0), temp[0]);
_mm_storeu_si128(M128_CAST(cv_r+2), temp[1]);
-};
+}
/* -------------------------------------------------------- *
* step function
|