From 5e5eaae566ba873a21fe5e1add0eca7973f8389e Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Thu, 19 Dec 2002 17:01:00 +0000 Subject: [PATCH] add missing parens [SVN r16665] --- include/boost/detail/workaround.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/detail/workaround.hpp b/include/boost/detail/workaround.hpp index b1480756..229b3cc1 100644 --- a/include/boost/detail/workaround.hpp +++ b/include/boost/detail/workaround.hpp @@ -34,8 +34,8 @@ # ifndef BOOST_STRICT_CONFIG # define BOOST_WORKAROUND(symbol, test) \ - (symbol != 0) && (1 % (( (symbol test) ) + 1)) -// ^ ^ ^ ^ + ((symbol != 0) && (1 % (( (symbol test) ) + 1))) +// ^ ^ ^ ^ // The extra level of parenthesis nesting above, along with the // BOOST_OPEN_PAREN indirection below, is required to satisfy the // broken preprocessor in MWCW 8.3 and earlier.