From 3599683975db3bd28d51eda69ec319bf088ce677 Mon Sep 17 00:00:00 2001 From: Nick Thompson Date: Thu, 1 Nov 2018 12:11:09 -0600 Subject: [PATCH] #include --- test/extended_euclidean_test.cpp | 1 + test/mod_inverse_test.cpp | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/test/extended_euclidean_test.cpp b/test/extended_euclidean_test.cpp index 91b2533..2978083 100644 --- a/test/extended_euclidean_test.cpp +++ b/test/extended_euclidean_test.cpp @@ -4,6 +4,7 @@ * Boost Software License, Version 1.0. (See accompanying file * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ +#include #if (defined(BOOST_MSVC) && (BOOST_MSVC < 1500)) || \ (defined(__clang_major__) && (__clang_major__ == 3) && (__clang_minor__ < 2)) || \ (defined(BOOST_GCC) && defined(BOOST_GCC_CXX11) && BOOST_GCC < 40800) diff --git a/test/mod_inverse_test.cpp b/test/mod_inverse_test.cpp index a69f750..793c5c1 100644 --- a/test/mod_inverse_test.cpp +++ b/test/mod_inverse_test.cpp @@ -4,9 +4,10 @@ * Boost Software License, Version 1.0. (See accompanying file * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ +#include #if (defined(BOOST_MSVC) && (BOOST_MSVC < 1500)) || \ (defined(__clang_major__) && (__clang_major__ == 3) && (__clang_minor__ < 2)) || \ - (defined(BOOST_GCC) && defined(BOOST_GCC_CXX11) && BOOST_GCC < 50000) + (defined(BOOST_GCC) && defined(BOOST_GCC_CXX11) && BOOST_GCC < 40800) #define DISABLE_MP_TESTS #endif