$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Strange error while using BOOST_FOREACH
From: Nathan Ridge (zeratul976_at_[hidden])
Date: 2012-03-11 07:10:02
Have you tried instantiating the range_const_iterator and range_mutable_iterator
metafunctions with the relevant types and checking that they actually have
::type members?
That is, do
typedef range_const_iterator<your_range>::type T1;
and
typedef range_mutable_iterator<your_range>::type T2;
compile?
Regards,
Nate