]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/multiprecision/test/test_float128_serial.cpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / libs / multiprecision / test / test_float128_serial.cpp
CommitLineData
7c673cae
FG
1///////////////////////////////////////////////////////////////
2// Copyright 2013 John Maddock. Distributed under the Boost
3// Software License, Version 1.0. (See accompanying file
92f5a8d4 4// LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt
7c673cae
FG
5
6//
7// Compare arithmetic results using fixed_int to GMP results.
8//
9
10#ifdef _MSC_VER
92f5a8d4 11#define _SCL_SECURE_NO_WARNINGS
7c673cae
FG
12#endif
13
14#include <boost/multiprecision/float128.hpp>
15#include "test_float_serial.hpp"
16
7c673cae
FG
17int main()
18{
19 using namespace boost::multiprecision;
20 test<float128>();
21 return boost::report_errors();
22}