Add comment on conflicts with C++11 range access

This commit is contained in:
Mateusz Loskot
2013-07-05 23:51:23 +01:00
parent 17928ac385
commit 1e2841c683

View File

@ -22,6 +22,10 @@
int main()
{
// See README.md for explanation on qualified names below
// C++11 range access interferes with Boost.Fusion:
// error: call to 'begin' is ambiguous
using namespace boost::fusion;
typedef std::array<int,3> array_type;