On Tue, Jul 28, 2015 at 5:23 AM, Ilya Bizyaev <[email protected]> wrote: > MinGW-w64 build fails: > ------------------------------------------------------------------------------------------------ > In file included from seckey.h:9:0, > from 3way.h:7, > from 3way.cpp:5: > misc.h:409:13: error: redefinition of 'bool CryptoPP::SafeConvert(T1, T2&) > [with T1 = long long unsigned int; T2 = long long int]' > inline bool SafeConvert<long long unsigned int,long long int>(long long > unsigned int from, long long int &to) > ^ > misc.h:375:13: note: 'bool CryptoPP::SafeConvert(T1, T2&) [with T1 = long > long unsigned int; T2 = long long int]' previously declared here > inline bool SafeConvert<size_t,std::streamsize>(size_t from, > std::streamsize &to) > ^ > make: *** [3way.o] Error 1
That is due to different platforms defining size_t and ssize_t differently. I'll get it cleaned up shortly. -- -- You received this message because you are subscribed to the "Crypto++ Users" Google Group. To unsubscribe, send an email to [email protected]. More information about Crypto++ and this group is available at http://www.cryptopp.com. --- You received this message because you are subscribed to the Google Groups "Crypto++ Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
