]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/multiprecision/test/standalone_test_arithmetic_gmp.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / multiprecision / test / standalone_test_arithmetic_gmp.cpp
1 ///////////////////////////////////////////////////////////////
2 // Copyright 2012 John Maddock.
3 // Copyright 2021 Matt Borland. Distributed under the Boost
4 // Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
6
7 #ifdef _MSC_VER
8 #define _SCL_SECURE_NO_WARNINGS
9 #endif
10
11 #define BOOST_MP_STANDALONE
12
13 #include "test_arithmetic.hpp"
14 #include <boost/multiprecision/gmp.hpp>
15 #include <boost/multiprecision/rational_adaptor.hpp>
16
17 int main()
18 {
19 test<boost::multiprecision::mpz_int>();
20 return boost::report_errors();
21 }