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