From 3bf644fc1088d8302499ebaecfc06bd1b0a0229b Mon Sep 17 00:00:00 2001 From: Joel Falcou Date: Sun, 6 Mar 2011 11:09:13 +0000 Subject: [PATCH] Fully qualified mpl::for_each call to prevent conflict with phoenix::for_each on some compiler. [SVN r69601] --- include/boost/mpl/for_each.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/boost/mpl/for_each.hpp b/include/boost/mpl/for_each.hpp index 1feadc9..66fd01b 100644 --- a/include/boost/mpl/for_each.hpp +++ b/include/boost/mpl/for_each.hpp @@ -108,7 +108,9 @@ template< inline void for_each(F f, Sequence* = 0) { - for_each >(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 >(f); } }}