summaryrefslogtreecommitdiff
path: root/iterhash.h
diff options
context:
space:
mode:
authorMarcel Raad <MarcelRaad@users.noreply.github.com>2018-05-11 01:59:21 +0200
committerJeffrey Walton <noloader@gmail.com>2018-05-10 19:59:21 -0400
commit7c1d296283fab97a2a5d34445b8c4adca0b9ea0e (patch)
tree9444a3cfe124d3f185c27e331d3a733d5c412dc8 /iterhash.h
parenta07a0e5e5f5f9ad8c3533202b6a7cd3a8036f5f4 (diff)
downloadcryptopp-git-7c1d296283fab97a2a5d34445b8c4adca0b9ea0e.tar.gz
Fix clang warnings in headers (#655)
* remove superfluous semicolon * Remove C-style casts from public headers clang warns about them with -Wold-style-cast. It also warns about implicitly casting away const with -Wcast-qual. Fix both by removing unnecessary casts and converting the remaining ones to C++ casts.
Diffstat (limited to 'iterhash.h')
-rw-r--r--iterhash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/iterhash.h b/iterhash.h
index dae50d43..9526d4a7 100644
--- a/iterhash.h
+++ b/iterhash.h
@@ -168,7 +168,7 @@ public:
/// \brief Provides the digest size of the hash
/// \return the digest size of the hash, in bytes
/// \details DigestSize() returns <tt>DIGESTSIZE</tt>.
- unsigned int DigestSize() const {return DIGESTSIZE;};
+ unsigned int DigestSize() const {return DIGESTSIZE;}
protected:
IteratedHashWithStaticTransform() {this->Init();}