From 1e2841c68385d46bb3c7fcbdeeff01f59482e431 Mon Sep 17 00:00:00 2001 From: Mateusz Loskot Date: Fri, 5 Jul 2013 23:51:23 +0100 Subject: [PATCH] Add comment on conflicts with C++11 range access --- libs/fusion/test/sequence/std_array.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libs/fusion/test/sequence/std_array.cpp b/libs/fusion/test/sequence/std_array.cpp index c96899f7..49040bfc 100644 --- a/libs/fusion/test/sequence/std_array.cpp +++ b/libs/fusion/test/sequence/std_array.cpp @@ -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 array_type;