mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-01 05:44:37 +02:00
Fully qualified mpl::for_each call to prevent conflict with phoenix::for_each on
some compiler. [SVN r69601]
This commit is contained in:
committed by
Daniel James
parent
8886e3d7da
commit
3bf644fc10
@@ -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);
|
||||
}
|
||||
|
||||
}}
|
||||
|
Reference in New Issue
Block a user