// Copyright 2025 Peter Dimov // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt #include #include #include #if defined(_MSC_VER) # pragma warning(disable: 4702) // unreachable code #endif template void test() { { boost::array const a1 = {}; boost::array const a2 = {}; BOOST_TEST( a1 == a2 ); BOOST_TEST_NOT( a1 != a2 ); } for( std::size_t i = 0; i < N; ++i ) { boost::array const a1 = {}; boost::array a2 = a1; a2[ i ] = 1; BOOST_TEST( a1 != a2 ); BOOST_TEST_NOT( a1 == a2 ); boost::array const a3 = a2; BOOST_TEST( a1 != a3 ); BOOST_TEST_NOT( a1 == a3 ); } { boost::array a1 = {}; boost::array a2 = {}; a1.fill( 1 ); a2.fill( 1 ); BOOST_TEST( a1 == a2 ); BOOST_TEST_NOT( a1 != a2 ); } } template void test2() { { boost::array const a1 = {{ 1, 2, 3, 4 }}; boost::array const a2 = {{ 1, 2, 3, 4 }}; BOOST_TEST( a1 == a2 ); BOOST_TEST_NOT( a1 != a2 ); } for( std::size_t i = 0; i < 4; ++i ) { boost::array const a1 = {{ 1, 2, 3, 4 }}; boost::array a2 = a1; a2[ i ] = 0; BOOST_TEST( a1 != a2 ); BOOST_TEST_NOT( a1 == a2 ); boost::array const a3 = a2; BOOST_TEST( a1 != a3 ); BOOST_TEST_NOT( a1 == a3 ); } } int main() { test(); test(); test(); test2(); return boost::report_errors(); }