blob: 69cd508fdb505cc51e69d24583b396db4b0a939a [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
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
8int 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 ndnboost::report_errors();
18}