From 96c51ffb2c5ea8e8f419193325fdd69c61199712 Mon Sep 17 00:00:00 2001 From: Alexander Afanasyev Date: Sat, 23 Jan 2016 12:32:11 -0800 Subject: [PATCH] Fix compilation for armeabi with gcc-4.9, 5.0 toolchains Refs: #119 --- integer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integer.cpp b/integer.cpp index c5321680..dac50b9a 100644 --- a/integer.cpp +++ b/integer.cpp @@ -2789,7 +2789,7 @@ InitializeInteger::InitializeInteger() if (!g_pAssignIntToInteger) { SetFunctionPointers(); - g_pAssignIntToInteger = AssignIntToInteger; + g_pAssignIntToInteger = (CryptoPP::PAssignIntToInteger)AssignIntToInteger; } }