summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-29 03:28:23 +0000
committernoloader <noloader@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2015-06-29 03:28:23 +0000
commit933fe67b1ce8d309994ee2b49c81b9e2bb7c026b (patch)
tree31ba806788a6cefbee97014eca5e5843023aa242
parentc62d1c72423a662aa7f15d75be5b11f5f2412aa3 (diff)
downloadcryptopp-933fe67b1ce8d309994ee2b49c81b9e2bb7c026b.tar.gz
Cleared ill-formed conversion in C++11
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@553 57ff6487-cd31-0410-9ec3-f628ee90f5f0
-rw-r--r--wake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wake.cpp b/wake.cpp
index c34165b..e0f194e 100644
--- a/wake.cpp
+++ b/wake.cpp
@@ -23,7 +23,7 @@ void WAKE_Base::GenKey(word32 k0, word32 k1, word32 k2, word32 k3)
signed int x, z, p;
// x and z were declared as "long" in Wheeler's paper, which is a signed type. I don't know if that was intentional, but it's too late to change it now. -- Wei 7/4/2010
CRYPTOPP_COMPILE_ASSERT(sizeof(x) == 4);
- static int tt[10]= {
+ static unsigned int tt[10]= {
0x726a8f3b, // table
0xe69a3b5c,
0xd3c71fe5,