| 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 | #define _SILENCE_CXX23_DENORM_DEPRECATION_WARNING |
| 7 | |
| 8 | #include "hash_float_test.hpp" |
| 9 | |
| 10 | int main() |
| 11 | { |
| 12 | std::cerr<<"Compiler: "<<BOOST_COMPILER<< "\n"; |
| 13 | std::cerr<<"Platform: "<<BOOST_PLATFORM<< "\n"; |
| 14 | std::cerr<<"Library: "<<BOOST_STDLIB<< "\n\n"; |
| 15 | |
| 16 | float_tests(name: "long double", (long double*) 0); |
| 17 | |
| 18 | return boost::report_errors(); |
| 19 | } |
| 20 |
