$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [mpl] Strange error using boost::mpl::eval_if
From: Maxim Yanchenko (maximyanchenko_at_[hidden])
Date: 2012-11-11 21:27:52
Edward Diener <eldiener <at> tropicsoft.com> writes:
> template<class T1,class T2,class T3,class T4>
> struct DDD :
>    boost::mpl::eval_if
>      <
>      boost::mpl::false_,
>      BBB<T1>,
>      AAA<int,int>
>      >
>    {
>    };
> 
You didn't execute your eval_if with ::type
-- Maxim