• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 #define BOOST_MATH_ASSERT_UNDEFINED_POLICY false
7 
8 #include <boost/cstdfloat.hpp>
9 #include "poison.hpp"
10 #include <boost/math/concepts/distributions.hpp>
11 
12 #include "instantiate.hpp"
13 
14 
main(int argc,char * [])15 int main(int
16 #ifdef BOOST_FLOAT80_C
17       argc
18 #endif
19    , char*[])
20 {
21 #ifdef BOOST_FLOAT80_C
22    if(argc > 1000)
23       instantiate(BOOST_FLOAT80_C(1.23));
24 #endif
25 }
26 
27