summaryrefslogtreecommitdiff
path: root/eccrypto.cpp
diff options
context:
space:
mode:
authorIlja <ilja.honkonen@fmi.fi>2018-03-31 20:08:57 +0300
committerJeffrey Walton <noloader@gmail.com>2018-03-31 13:08:57 -0400
commit38253a939f937ee9614dc8286257b9d4c26ef891 (patch)
treeb9d4db4a3a6874b8b2769f46d7f9279d1cecbfc2 /eccrypto.cpp
parente7ee0e9baba31ef7133cf8bf2bee848b1f270ea9 (diff)
downloadcryptopp-git-38253a939f937ee9614dc8286257b9d4c26ef891.tar.gz
Remove extra ; from eccrypto.cpp (PR #616)
Diffstat (limited to 'eccrypto.cpp')
-rw-r--r--eccrypto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/eccrypto.cpp b/eccrypto.cpp
index 4617e346..b864e8e5 100644
--- a/eccrypto.cpp
+++ b/eccrypto.cpp
@@ -595,7 +595,7 @@ template <class EC>
Integer DL_GroupParameters_EC<EC>::ConvertElementToInteger(const Element &element) const
{
return ConvertToInteger(element.x);
-};
+}
template <class EC>
bool DL_GroupParameters_EC<EC>::ValidateGroup(RandomNumberGenerator &rng, unsigned int level) const