]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/multiprecision/test/standalone_test_arithmetic_complex128.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / multiprecision / test / standalone_test_arithmetic_complex128.cpp
1 ///////////////////////////////////////////////////////////////
2 // Copyright 2012-2021 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 #define BOOST_MP_STANDALONE
8
9 #include <boost/config.hpp>
10
11 #ifdef BOOST_HAS_FLOAT128
12 #include <boost/multiprecision/complex128.hpp>
13 #endif
14
15 #include "test_arithmetic.hpp"
16
17 int main()
18 {
19 #ifdef BOOST_HAS_FLOAT128
20 test<boost::multiprecision::complex128>();
21 #endif
22 return boost::report_errors();
23 }