fixed conflict detected by g++4.x between fusion::at and mpl::at

[SVN r62675]
This commit is contained in:
Christophe Henry
2010-06-09 17:39:26 +00:00
parent c02a3ba001
commit d250c447b2

View File

@ -36,7 +36,7 @@ namespace boost { namespace fusion { namespace extension
static type
call(It const& it)
{
return at<typename It::index>(it.seq->get_data());
return ::boost::fusion::at<typename It::index>(it.seq->get_data());
}
};
};