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 main(int argc,char * [])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 26