]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/math/test/compile_test/ccmath_fpclassify_incl_test.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / compile_test / ccmath_fpclassify_incl_test.cpp
CommitLineData
1e59de90
TL
1// (C) Copyright Matt Borland 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#include <boost/math/ccmath/fpclassify.hpp>
7#include "test_compile_result.hpp"
8
9void compile_and_link_test()
10{
11 check_result<int>(boost::math::ccmath::fpclassify(1.0f));
12 check_result<int>(boost::math::ccmath::fpclassify(1.0));
13#ifndef BOOST_MATH_NO_LONG_DOUBLE_MATH_FUNCTIONS
14 check_result<int>(boost::math::ccmath::fpclassify(1.0l));
15#endif
16}