2024-08-15 20:00:21 +03:00
|
|
|
// Copyright (c) 2018, 2024 Andrey Semashev
|
2018-11-05 22:56:03 +03:00
|
|
|
//
|
|
|
|
|
// Use, modification, and distribution is subject to the Boost Software
|
|
|
|
|
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
2021-01-20 11:34:42 +03:00
|
|
|
// https://www.boost.org/LICENSE_1_0.txt)
|
2018-11-05 22:56:03 +03:00
|
|
|
|
|
|
|
|
#ifndef BOOST_INTEGER_TEST_MULTIPRECISION_CONFIG_HPP_INCLUDED_
|
|
|
|
|
#define BOOST_INTEGER_TEST_MULTIPRECISION_CONFIG_HPP_INCLUDED_
|
|
|
|
|
|
|
|
|
|
#include <boost/config.hpp>
|
|
|
|
|
|
2024-08-15 20:00:21 +03:00
|
|
|
// Boost.Multiprecision requires a number of C++11 features, see boost/multiprecision/detail/check_cpp11_config.hpp.
|
|
|
|
|
// Also, Boost.Multiprecision internally uses Boost.Math, which requires C++14 and a recent enough MSVC, see boost/math/tools/config.hpp.
|
|
|
|
|
#if (BOOST_CXX_VERSION < 201402) || \
|
|
|
|
|
(defined(_MSC_VER) && (_MSC_VER <= 1900))
|
2021-01-11 15:27:10 +03:00
|
|
|
#define DISABLE_MP_TESTS
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-11-05 22:56:03 +03:00
|
|
|
#endif // BOOST_INTEGER_TEST_MULTIPRECISION_CONFIG_HPP_INCLUDED_
|