I am trying to compile using clang 3.4 and -std=c++11.
With the -std=c++11 it compiles and runs without any issue.
With -std=c++11 I get
boost_1_60_0\boost/fusion/container/vector/vector.hpp:126:20: error: no
template named 'forward' in namespace 'std'; did you mean
'advance_detail::forward'?
return std::forward<result>(*advance_c<N>(begin(seq)));
and many similar errors.
I have tried all the boost
BOOST_NO_CXX11_HDR_ macros but not found one that resolves this issue.
I don't have any choice about compiler version or library version due to
other constraints.
Any suggestions appreciated,
Stan
*#include*