On Mon, Aug 10, 2015 at 1:44 PM, David Irvine <[email protected]> wrote:
> To me this looks like you are mixing c++ (prob 03) and c++11 libraries. > You need to make sure the libraries you are linking are all the same. I should add more detail (sorry), this error is what you get if you try and link a lib built without c++11 and one with. So if you built cryptopp without std=c++11 and your project is using c++11 for compiling this is the error you will see. so you need to align the flags used to build cryptopp and your project. -- David Irvine twitter: @metaquestions blog: http://metaquestions.me -- -- 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.
