hash_long_double_test.cpp 478 B

1234567891011121314151617
  1. // Copyright 2005-2009 Daniel James.
  2. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #include "hash_float_test.hpp"
  5. int main()
  6. {
  7. std::cerr<<"Compiler: "<<BOOST_COMPILER<<"\n";
  8. std::cerr<<"Platform: "<<BOOST_PLATFORM<<"\n";
  9. std::cerr<<"Library: "<<BOOST_STDLIB<<"\n\n";
  10. float_tests("long double", (long double*) 0);
  11. return boost::report_errors();
  12. }