diff --git a/test/io_test.cpp b/test/io_test.cpp index ef3d7ee..c50b961 100644 --- a/test/io_test.cpp +++ b/test/io_test.cpp @@ -33,7 +33,8 @@ typedef istringstream useThisIStringStream; #endif int test_main(int argc, char * argv[] ) { - + (void)argc; + (void)argv; using boost::tuples::set_close; using boost::tuples::set_open; using boost::tuples::set_delimiter; @@ -94,7 +95,7 @@ int test_main(int argc, char * argv[] ) { useThisIStringStream is("(100 200 300)"); tuple ti; - BOOST_TEST(is >> ti); + BOOST_TEST(bool(is >> ti)); BOOST_TEST(ti == make_tuple(100, 200, 300));