j
k
j a
j l
Quoting Ed Keith :
[...] BOOST_PP_IF(abc == abc, foo, bar) I get an error. Is it possible to do something like this? If so, what am I doing wrong?
[...]
BOOST_PP_IF(abc == abc, foo, bar)
I get an error.
Is it possible to do something like this? If so, what am I doing wrong?
I think you have to use BOOST_PP_IF( BOOST_PP_EQUAL(abc,abc) , foo, bar ) here. Pete
Back to the thread
Back to the list