cstdfloat_concept_check_4.cpp 569 B

1234567891011121314151617181920212223242526
  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. #define BOOST_MATH_ASSERT_UNDEFINED_POLICY false
  6. #include <boost/cstdfloat.hpp>
  7. #include "poison.hpp"
  8. #include <boost/math/concepts/distributions.hpp>
  9. #include "instantiate.hpp"
  10. int main(int
  11. #ifdef BOOST_FLOAT32_C
  12. argc
  13. #endif
  14. , char*[])
  15. {
  16. #ifdef BOOST_FLOAT32_C
  17. if(argc > 1000)
  18. instantiate(BOOST_FLOAT32_C(1.23));
  19. #endif
  20. }