hash_float_test.cpp 506 B

123456789101112131415161718
  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("float", (float*) 0);
  11. float_tests("double", (double*) 0);
  12. return boost::report_errors();
  13. }