Don't run tests on gcc 4 and earlier; not worth the pain.

This commit is contained in:
Nick Thompson
2018-10-28 22:40:36 -06:00
parent bbb1da275b
commit c4c3373708
3 changed files with 7 additions and 0 deletions

View File

@ -38,6 +38,8 @@ The extended Euclidean algorithm solves the integer relation /mx + ny/ = gcd(/m/
int y = res.y;
// mx + ny = gcd(m,n) should now hold
Unlike most of the library, the extended Euclidean algorithm requires C++11 features.
[endsect]
[section References]