
6 May
2005
6 May
'05
4:23 a.m.
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