Skip to content

Commit

Permalink
Cleared ill-formed conversion in C++11
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Jun 9, 2015
1 parent 242187d commit 44015c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wake.cpp
Expand Up @@ -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,
Expand Down

1 comment on commit 44015c2

@daygle
Copy link

@daygle daygle commented on 44015c2 Apr 13, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This fix worked for me :)

Please sign in to comment.