$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] MPL - what rule am I breaking?
From: Noah Roberts (roberts.noah_at_[hidden])
Date: 2009-03-06 14:57:01
Eric Niebler wrote:
> Noah Roberts wrote:
>> template < typename FIELD, bool Writable >
>> struct rec
> <snip>
> 
>> template < typename VEC >
>> struct generate_record
>>   : boost::mpl::inherit_linearly< VEC, boost::mpl::inherit< 
>> rec<pl::_2, true>, pl::_1> >::type
> <snip>
> 
> The problem is the "bool Writable" non-type template parameter. The MPL 
> lambda expression evaluator can't handle that. 
Thanks.