]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/math/test/compile_test/cstdfloat_concept_check_1.cpp
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / libs / math / test / compile_test / cstdfloat_concept_check_1.cpp
CommitLineData
7c673cae
FG
1// Copyright John Maddock 2014.
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
1e59de90
TL
6#ifndef BOOST_MATH_STANDALONE
7
7c673cae
FG
8#define BOOST_MATH_ASSERT_UNDEFINED_POLICY false
9
10#include <boost/cstdfloat.hpp>
11#include "poison.hpp"
7c673cae
FG
12#include "instantiate.hpp"
13
14int main(int
15#ifdef BOOST_FLOAT128_C
16 argc
17#endif
18 , char*[])
19{
20#ifdef BOOST_FLOAT128_C
21 if(argc > 1000)
22 instantiate(BOOST_FLOAT128_C(1.23));
23#endif
24}
25
1e59de90
TL
26#else
27int main(void) { return 0; }
28#endif