Fully qualified mpl::for_each call to prevent conflict with phoenix::for_each on

some compiler.

[SVN r69601]
This commit is contained in:
Joel Falcou
2011-03-06 11:09:13 +00:00
committed by Daniel James
parent 8886e3d7da
commit 3bf644fc10

View File

@@ -108,7 +108,9 @@ template<
inline
void for_each(F f, Sequence* = 0)
{
for_each<Sequence, identity<> >(f);
// jfalcou: fully qualifying this call so it doesnt clash with phoenix::for_each
// ons ome compilers -- done on 02/28/2011
boost::mpl::for_each<Sequence, identity<> >(f);
}
}}