summaryrefslogtreecommitdiff
path: root/integer.cpp
diff options
context:
space:
mode:
authorAlexander Afanasyev <alexander.afanasyev@ucla.edu>2016-01-23 12:32:11 -0800
committerAlexander Afanasyev <alexander.afanasyev@ucla.edu>2016-01-23 12:32:11 -0800
commit96c51ffb2c5ea8e8f419193325fdd69c61199712 (patch)
tree110d5bf2e7ab3bd071b32694fccf9749526fa148 /integer.cpp
parentdf1f68da841c4be9213a7637a3a2abb0b5edd803 (diff)
downloadcryptopp-git-96c51ffb2c5ea8e8f419193325fdd69c61199712.tar.gz
Fix compilation for armeabi with gcc-4.9, 5.0 toolchains
Refs: #119
Diffstat (limited to 'integer.cpp')
-rw-r--r--integer.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}
}