diff --git a/test/ref_ref_test.cpp b/test/ref_ref_test.cpp index 202c01c..b667a7f 100644 --- a/test/ref_ref_test.cpp +++ b/test/ref_ref_test.cpp @@ -34,4 +34,6 @@ int main() boost::reference_wrapper< int const > r = boost::cref( boost::cref( x ) ); BOOST_TEST_EQ( &r.get(), &x ); } + + return boost::report_errors(); }