From 1177466ac3b4c7e88a1fa760da6bab6852f62811 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 28 Feb 2006 22:56:33 +0000 Subject: [PATCH] Stop using assert() in tests [SVN r33181] --- include/boost/mpl/aux_/test.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/mpl/aux_/test.hpp b/include/boost/mpl/aux_/test.hpp index 7b08140..22df1d2 100644 --- a/include/boost/mpl/aux_/test.hpp +++ b/include/boost/mpl/aux_/test.hpp @@ -17,12 +17,13 @@ #include #include #include +#include #include int main() { - return 0; + return boost::report_errors(); } using namespace boost;