]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/math/test/bernoulli_no_atomic_fail.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / bernoulli_no_atomic_fail.cpp
1 // (C) Copyright John Maddock 2021.
2 // Use, modification and distribution are subject to the
3 // Boost Software License, Version 1.0. (See accompanying file
4 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 #define BOOST_MATH_NO_ATOMIC_INT
7
8 #include <boost/math/special_functions/bernoulli.hpp>
9 #include <boost/multiprecision/cpp_bin_float.hpp>
10 #include "compile_test/test_compile_result.hpp"
11
12 void compile_and_link_test()
13 {
14 check_result<boost::multiprecision::cpp_bin_float_50>(boost::math::bernoulli_b2n<boost::multiprecision::cpp_bin_float_50>(4));
15 }