1 // 2 // Test that BOOST_TEST_EQ doesn't emit sign compare warnings 3 // 4 // Copyright 2019 Peter Dimov 5 // 6 // Distributed under the Boost Software License, Version 1.0. 7 // See accompanying file LICENSE_1_0.txt or copy at 8 // http://www.boost.org/LICENSE_1_0.txt 9 // 10 11 #include <boost/core/lightweight_test.hpp> 12 main()13 int main() 14 { 15 BOOST_TEST_EQ(1, 1u); 16 BOOST_TEST_EQ(~0u, -1); 17 18 return boost::report_errors(); 19 } 20