From c5dd995eadd9638b2a7657ff1b1dc984b771a24d Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 10 Jun 2014 04:40:21 +0300 Subject: [PATCH] Add boost::report_errors to ref_ref_test. --- test/ref_ref_test.cpp | 2 ++ 1 file changed, 2 insertions(+) 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(); }