Boost logo

Boost :

From: Peter Dimov (pdimov_at_[hidden])
Date: 2005-01-12 11:09:11


Sergey Pisarchik wrote:
> enum
> {
> msvc71_wknd_ = ( BOOST_MPL_AUX_VALUE_WKND(T1)::value
> < BOOST_MPL_AUX_VALUE_WKND(T2)::value)
> };
>
>
> How can I fix it ?

Switch the order of the arguments:

msvc71_wknd_ = ( BOOST_MPL_AUX_VALUE_WKND(T2)::value >
    BOOST_MPL_AUX_VALUE_WKND(T1)::value)

I thought we fixed that long ago... are you still using 1.31?


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk