
22 Feb
2013
22 Feb
'13
3:27 p.m.
Will something like this compile on C++03 compilers?
struct foo { tuple<int> x; };
foo a, b; a = b;
Otherwise, it should have an option to disable Boost.Move.
Im sorry, it should be something like this: struct foo { tuple<int> x; }; foo a; a = foo();
It compiles. Why do you think it might not?
Because of this issue here: https://svn.boost.org/trac/boost/ticket/6167 Thanks, Paul