/* tests for using boost::hash with boost::array * (C) Copyright Marshall Clow 2012 * Distributed under the Boost Software License, Version 1.0. (See * accompanying file LICENSE_1_0.txt or copy at * http://www.boost.org/LICENSE_1_0.txt) */ #include #include #include #include #include #define BOOST_TEST_MAIN #include namespace { template< class T > void RunTests() { // std::size_t hash0 = boost::hash > () ( boost::array ()); // std::size_t hash1 = boost::hash > () ( boost::array ()); typedef boost::array< T, 5 > barr; typedef T arr[5]; barr test_barr = {{ 1, 1, 2, 3, 5 }}; arr test_arr = { 1, 1, 2, 3, 5 }; std::size_t bhash = boost::hash () ( test_barr ); std::size_t ahash = boost::hash () ( test_arr ); BOOST_CHECK ( ahash == bhash ); } } BOOST_AUTO_TEST_CASE( test_main ) { RunTests< int >(); RunTests< long >(); RunTests< long double >(); }