Remove dependency on boost/typeindex in tests.

This commit is contained in:
Nick Thompson
2018-10-26 19:23:11 -06:00
parent 0c6ec8088d
commit de0d24733b
3 changed files with 1 additions and 5 deletions

View File

@ -68,7 +68,7 @@ euclidean_result_t<Z> extended_euclidean(Z m, Z n)
if (swapped)
{
return {u0, u2, u2};
return {u0, u2, u1};
}
return {u0, u1, u2};
}