summaryrefslogtreecommitdiff
path: root/sha3.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2016-10-01 05:24:45 -0400
committerJeffrey Walton <noloader@gmail.com>2016-10-01 05:24:45 -0400
commit50736d8c1f914bd59e5dc84424bc6a8e523cc09a (patch)
treec3868a011a8b6778912dcb728940d1c184404eec /sha3.h
parentd40c7fb56bdd078a1830c20387a89e6c2616b5f0 (diff)
downloadcryptopp-git-50736d8c1f914bd59e5dc84424bc6a8e523cc09a.tar.gz
Clear warnings under Visual Studio 2008
Diffstat (limited to 'sha3.h')
-rw-r--r--sha3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sha3.h b/sha3.h
index 23a18fad..e863b327 100644
--- a/sha3.h
+++ b/sha3.h
@@ -68,7 +68,7 @@ public:
unsigned int BlockSize() const { return BLOCKSIZE; }
private:
CRYPTOPP_COMPILE_ASSERT(BLOCKSIZE < 200); // ensure there was no underflow in the math
- CRYPTOPP_COMPILE_ASSERT(BLOCKSIZE > T_DigestSize); // this is a general expectation by HMAC
+ CRYPTOPP_COMPILE_ASSERT(BLOCKSIZE > (int)T_DigestSize); // this is a general expectation by HMAC
};
//! \class SHA3_224