aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2012-06-26 23:11:43 +0000
committerlloyd <[email protected]>2012-06-26 23:11:43 +0000
commit22ec99701496fea97c8681409551bd44105acf79 (patch)
tree102271355a8a02212aa392c2884d9eb56df71642 /src
parente6fc8070ab1b4144b5ebad9e9e594173d562f59c (diff)
Be explicit about swap template specialization
Diffstat (limited to 'src')
-rw-r--r--src/math/bigint/bigint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/bigint/bigint.h b/src/math/bigint/bigint.h
index 98b98bd6f..808c5a876 100644
--- a/src/math/bigint/bigint.h
+++ b/src/math/bigint/bigint.h
@@ -605,7 +605,7 @@ BOTAN_DLL std::istream& operator>>(std::istream&, BigInt&);
namespace std {
template<>
-inline void swap(Botan::BigInt& x, Botan::BigInt& y)
+inline void swap<Botan::BigInt>(Botan::BigInt& x, Botan::BigInt& y)
{
x.swap(y);
}