forked from boostorg/integer
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)
|
if (m < n)
|
||||||
{
|
{
|
||||||
swapped = true;
|
swapped = true;
|
||||||
std::swap(m, n);
|
using std::swap;
|
||||||
|
swap(m, n);
|
||||||
}
|
}
|
||||||
Z u0 = m;
|
Z u0 = m;
|
||||||
Z u1 = 1;
|
Z u1 = 1;
|
||||||
|
Reference in New Issue
Block a user