Imported Upstream version 1.72.0
[platform/upstream/boost.git] / libs / multiprecision / test / test_arithmetic_mpz.cpp
1 ///////////////////////////////////////////////////////////////
2 //  Copyright 2012 John Maddock. Distributed under the Boost
3 //  Software License, Version 1.0. (See accompanying file
4 //  LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
5
6 #ifdef _MSC_VER
7 #define _SCL_SECURE_NO_WARNINGS
8 #endif
9
10 #include <boost/multiprecision/gmp.hpp>
11 #include <boost/multiprecision/rational_adaptor.hpp>
12
13 #include "test_arithmetic.hpp"
14
15 int main()
16 {
17    test<boost::multiprecision::mpz_int>();
18    return boost::report_errors();
19 }