mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-02 22:34:31 +02:00
Fix a VC 7.1 problem when boost/bind.hpp is included before mpl/less.hpp
[SVN r22188]
This commit is contained in:
@@ -32,8 +32,8 @@ struct less
|
||||
{
|
||||
enum
|
||||
{
|
||||
msvc71_wknd_ = ( BOOST_MPL_AUX_VALUE_WKND(T1)::value
|
||||
< BOOST_MPL_AUX_VALUE_WKND(T2)::value )
|
||||
msvc71_wknd_ = ( BOOST_MPL_AUX_VALUE_WKND(T2)::value
|
||||
> BOOST_MPL_AUX_VALUE_WKND(T1)::value )
|
||||
};
|
||||
|
||||
BOOST_STATIC_CONSTANT(bool, value = msvc71_wknd_);
|
||||
|
Reference in New Issue
Block a user