diff options
author | lloyd <[email protected]> | 2012-06-26 23:11:43 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-06-26 23:11:43 +0000 |
commit | 22ec99701496fea97c8681409551bd44105acf79 (patch) | |
tree | 102271355a8a02212aa392c2884d9eb56df71642 /src | |
parent | e6fc8070ab1b4144b5ebad9e9e594173d562f59c (diff) |
Be explicit about swap template specialization
Diffstat (limited to 'src')
-rw-r--r-- | src/math/bigint/bigint.h | 2 |
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); } |