
22 Oct
2008
22 Oct
'08
9:33 p.m.
AMDG Pete Bartlett wrote:
#if (BOOST_FUNCTION_MAX_ARGS > BOOST_FUNCTION_MAX_ARGS_CURRENTLY_AVAILABLE_PLUS_1)
<snip>
#define BOOST_FUNCTION_MAX_ARGS_CURRENTLY_AVAILABLE_PLUS_1 (1+BOOST_FUNCTION_MAX_ARGS) //ready for next include
Unfortunately, macros used in another macro definition are not substituted immediately, so this is equivalent to #if (BOOST_FUNCTION_MAX_ARGS > (1+BOOST_FUNCTION_MAX_ARGS)) In Christ, Steven Watanabe