From d250c447b2786a8bfee203c01c13c8d2809e20a9 Mon Sep 17 00:00:00 2001 From: Christophe Henry Date: Wed, 9 Jun 2010 17:39:26 +0000 Subject: [PATCH] fixed conflict detected by g++4.x between fusion::at and mpl::at [SVN r62675] --- include/boost/fusion/container/set/detail/deref_impl.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/fusion/container/set/detail/deref_impl.hpp b/include/boost/fusion/container/set/detail/deref_impl.hpp index 12824e61..10a03496 100644 --- a/include/boost/fusion/container/set/detail/deref_impl.hpp +++ b/include/boost/fusion/container/set/detail/deref_impl.hpp @@ -36,7 +36,7 @@ namespace boost { namespace fusion { namespace extension static type call(It const& it) { - return at(it.seq->get_data()); + return ::boost::fusion::at(it.seq->get_data()); } }; };