diff options
author | serg@sergbook.mylan <> | 2005-05-05 16:21:17 +0200 |
---|---|---|
committer | serg@sergbook.mylan <> | 2005-05-05 16:21:17 +0200 |
commit | 83dfc216a79114676a156b316496a8cb3c815959 (patch) | |
tree | a159160b54a9b49abb7b3833c961b61240f85878 /extra/yassl/taocrypt/src/integer.cpp | |
parent | 25f44eab3137e10daac0d0c70ac8ada77880aa44 (diff) | |
download | mariadb-git-83dfc216a79114676a156b316496a8cb3c815959.tar.gz |
gcc 2.92 compatibility
Diffstat (limited to 'extra/yassl/taocrypt/src/integer.cpp')
-rw-r--r-- | extra/yassl/taocrypt/src/integer.cpp | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/extra/yassl/taocrypt/src/integer.cpp b/extra/yassl/taocrypt/src/integer.cpp index 20a968d78e3..c95170722ae 100644 --- a/extra/yassl/taocrypt/src/integer.cpp +++ b/extra/yassl/taocrypt/src/integer.cpp @@ -4168,16 +4168,13 @@ Integer CRT(const Integer &xp, const Integer &p, const Integer &xq, return p * (u * (xq-xp) % q) + xp; } - - -} // namespace - #ifdef __GNUC__ -template TaoCrypt::Integer TaoCrypt::StringToInteger<char>(char const*); -template TaoCrypt::Integer TaoCrypt::StringToInteger<wchar_t>(wchar_t const*); -template class TaoCrypt::EuclideanDomainOf<TaoCrypt::Integer>; -template class TaoCrypt::AbstractEuclideanDomain<TaoCrypt::Integer>; -template unsigned int TaoCrypt::DivideThreeWordsByTwo<unsigned int, TaoCrypt::DWord>(unsigned int*, unsigned int, unsigned int, TaoCrypt::DWord*); +template Integer StringToInteger<char>(char const*); +template Integer StringToInteger<wchar_t>(wchar_t const*); +template class EuclideanDomainOf<Integer>; +template class AbstractEuclideanDomain<Integer>; +template unsigned int DivideThreeWordsByTwo<unsigned int, DWord>(unsigned int*, unsigned int, unsigned int, DWord*); #endif +} // namespace |