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