Cleared ill-formed conversion in C++11

pull/2/head
Jeffrey Walton 2015-06-09 09:49:02 -04:00
parent 242187d80d
commit 44015c26ba
1 changed files with 1 additions and 1 deletions

View File

@ -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,