summaryrefslogtreecommitdiff
path: root/salsa.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-10-12 09:27:51 -0400
committerJeffrey Walton <noloader@gmail.com>2019-10-12 09:27:51 -0400
commitdd005c4bc3fb6db1ff98081c9901d79bcc086c48 (patch)
treebabae01841aaeec5dd6b9337e7455360400abb21 /salsa.h
parent13a75b6b51c7761a1cdcc4831d2b1c219a255122 (diff)
downloadcryptopp-git-dd005c4bc3fb6db1ff98081c9901d79bcc086c48.tar.gz
Fix stray semicolons uder MSVC (GH #889)
Diffstat (limited to 'salsa.h')
-rw-r--r--salsa.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/salsa.h b/salsa.h
index 9e6838e3..f421af20 100644
--- a/salsa.h
+++ b/salsa.h
@@ -50,7 +50,7 @@ protected:
std::string AlgorithmProvider() const;
- CRYPTOPP_CONSTANT(ROUNDS = 20) // Default rounds ;
+ CRYPTOPP_CONSTANT(ROUNDS = 20); // Default rounds
FixedSizeAlignedSecBlock<word32, 16> m_state;
int m_rounds;
};