From cec1a860e948e361a13a0d8fa2ac1b217ba6478f Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Sat, 15 Sep 2018 08:21:19 +0100 Subject: [PATCH] Add call to report_errors() to limits_test.cpp. --- test/limits_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/limits_test.cpp b/test/limits_test.cpp index 62444965..8c43ac0e 100644 --- a/test/limits_test.cpp +++ b/test/limits_test.cpp @@ -207,7 +207,7 @@ int cpp_main(int, char*[]) test_float_limits(long_double(), "long double"); // Some compilers don't pay attention to std:3.6.1/5 and issue a // warning here if "return 0;" is omitted. - return 0; + return boost::report_errors(); }