$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Hugo Duncan (hugoduncan_at_[hidden])
Date: 2004-10-28 07:02:05
Aleksey,
The normal case and the borland workaround in for_each.cpp test case
seem to be the wrong way round.
Hugo
Index: libs/mpl/test/for_each.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/mpl/test/for_each.cpp,v
retrieving revision 1.12
diff -r1.12 for_each.cpp
67,70d66
< mpl::for_each<numbers>(
< boost::bind(&std::vector<int>::push_back, &v, _1)
< );
< #else
74a71,74
> #else
> mpl::for_each<numbers>(
> boost::bind(&std::vector<int>::push_back, &v, _1)
> );