mirror of
https://github.com/boostorg/integer.git
synced 2025-07-29 20:27:14 +02:00
Use using std::swap; swap(n,m) rather than std::swap(n,m) [CI SKIP]
This commit is contained in:
@ -37,7 +37,8 @@ extended_euclidean(Z m, Z n)
|
||||
if (m < n)
|
||||
{
|
||||
swapped = true;
|
||||
std::swap(m, n);
|
||||
using std::swap;
|
||||
swap(m, n);
|
||||
}
|
||||
Z u0 = m;
|
||||
Z u1 = 1;
|
||||
|
Reference in New Issue
Block a user