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

@ -4,6 +4,8 @@
* Boost Software License, Version 1.0. (See accompanying file
* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
// A bug in gcc 4.8, not worth fixing, causes this to fail on gcc4.8.
#if __GNUC__ > 4
#include <cassert>
#include <boost/multiprecision/cpp_int.hpp>
#include <boost/integer/common_factor.hpp>
@ -45,3 +47,4 @@ int main()
return 0;
}
#endif