From e75b92f43a15d504e87b1c3c8a5b6898e0473e96 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Wed, 13 Oct 2004 14:27:35 +0000 Subject: [PATCH] try to workaround GCC/Linux 'assert' bug [SVN r25708] --- test/integral_wrapper_test.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/integral_wrapper_test.hpp b/test/integral_wrapper_test.hpp index 4d07530..ca4fbc7 100644 --- a/test/integral_wrapper_test.hpp +++ b/test/integral_wrapper_test.hpp @@ -19,12 +19,12 @@ #if !BOOST_WORKAROUND(__BORLANDC__, < 0x600) # define INTEGRAL_WRAPPER_RUNTIME_TEST(i, T) \ - assert(WRAPPER(T,i)() == i); \ - assert(WRAPPER(T,i)::value == i); \ + assert(( WRAPPER(T,i)() == i )); \ + assert(( WRAPPER(T,i)::value == i )); \ /**/ #else # define INTEGRAL_WRAPPER_RUNTIME_TEST(i, T) \ - assert(WRAPPER(T,i)::value == i); \ + assert(( WRAPPER(T,i)::value == i )); \ /**/ #endif