$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jonathan Turkanis (technews_at_[hidden])
Date: 2005-05-05 23:23:46
Brian Braatz wrote:
> Could it be as simple as missing the namespace on the is_sqeuence<>
> call?
>> On Behalf Of Joel
>> I have a problem with this code snippet:
>>
>> #include <boost/mpl/is_sequence.hpp>
>>
>> int
>> main()
>> {
>> using boost::mpl::int_;
>> using boost::mpl::is_sequence;
Here's the namespace ^^^^^
>> bool b = is_sequence<int_<0> >::value;
>> }
>>
Jonathan