You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When executing "make" on the latest version from the repository under Ubuntu
11.10 64bit I get the following errors:
sign.cc: In member function ‘float Msign::sign_ncd(std::string, std::string,
int)’:
sign.cc:681:25: error: cannot convert ‘unsigned int*’ to ‘size_t* {aka
long unsigned int*}’ in assignment
sign.cc:682:24: error: cannot convert ‘unsigned int*’ to ‘size_t* {aka
long unsigned int*}’ in assignment
Original issue reported on code.google.com by jan.stot...@googlemail.com on 7 Feb 2012 at 6:25
The text was updated successfully, but these errors were encountered:
just change the following lines from:
unsigned int corig = 0;
unsigned int ccmp = 0;
to:
unsigned long corig = 0;
unsigned long ccmp = 0;
in line 658 and 659 of sign.cc
Original comment by spreitze...@googlemail.com on 8 Feb 2012 at 6:56
Original issue reported on code.google.com by
jan.stot...@googlemail.com
on 7 Feb 2012 at 6:25The text was updated successfully, but these errors were encountered: