• 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("long double", (long double*) 0);
15 
16     return boost::report_errors();
17 }
18