diff options
author | lloyd <[email protected]> | 2014-11-04 22:20:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-11-04 22:20:01 +0000 |
commit | 757a72a79b31e3a18e2d48f43c7436e0566c75a0 (patch) | |
tree | 8a42c8d41cc52947cc572bbd7b54710ab1d7dca4 /src/lib | |
parent | 7a577ebdc390b539b0c64d0efddab804b65a46a5 (diff) |
Use noexcept on swap
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/math/ec_gfp/curve_gfp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/math/ec_gfp/curve_gfp.h b/src/lib/math/ec_gfp/curve_gfp.h index 48aeb4343..67fb3d2cf 100644 --- a/src/lib/math/ec_gfp/curve_gfp.h +++ b/src/lib/math/ec_gfp/curve_gfp.h @@ -169,7 +169,7 @@ namespace std { template<> inline void swap<Botan::CurveGFp>(Botan::CurveGFp& curve1, - Botan::CurveGFp& curve2) + Botan::CurveGFp& curve2) noexcept { curve1.swap(curve2); } |