add missing parens

[SVN r16665]
This commit is contained in:
Dave Abrahams
2002-12-19 17:01:00 +00:00
parent 3ada4c5873
commit 5e5eaae566

View File

@ -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.