From 1b7207ac44dcbfecfcc30bac171ef28e6d0e51fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Thu, 23 Jul 2015 10:53:16 +0200 Subject: [PATCH] Fixed wrong patch for the test --- test/assert_is_void_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/assert_is_void_test.cpp b/test/assert_is_void_test.cpp index 7a2d0ba..5e64a68 100644 --- a/test/assert_is_void_test.cpp +++ b/test/assert_is_void_test.cpp @@ -17,7 +17,7 @@ #include #ifdef BOOST_ASSERT_IS_VOID -#error "Error: BOOST_ASSERT should be void in NDEBUG" +#error "BOOST_ASSERT should NOT be void if NDEBUG is not defined" #endif // default case, NDEBUG @@ -27,7 +27,7 @@ #include #ifndef BOOST_ASSERT_IS_VOID -#error "BOOST_ASSERT should NOT be void if NDEBUG is not defined" +#error "Error: BOOST_ASSERT should be void in NDEBUG" #endif // BOOST_DISABLE_ASSERTS, !NDEBUG