mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-23 17:17:23 +02:00
qualifies lookup of type traits names
[SVN r38256]
This commit is contained in:
@ -127,8 +127,8 @@ namespace boost { namespace fusion
|
|||||||
|
|
||||||
typedef typename result_of::front<Sequence>::type that;
|
typedef typename result_of::front<Sequence>::type that;
|
||||||
|
|
||||||
typedef mpl::or_< is_convertible<that,C*>,
|
typedef mpl::or_< boost::is_convertible<that,C*>,
|
||||||
is_convertible<that,C&>,
|
boost::is_convertible<that,C&>,
|
||||||
non_const_pointee<that> > non_const_cond;
|
non_const_pointee<that> > non_const_cond;
|
||||||
|
|
||||||
typedef typename mpl::eval_if< non_const_cond,
|
typedef typename mpl::eval_if< non_const_cond,
|
||||||
|
Reference in New Issue
Block a user