20 Oct
2007
20 Oct
'07
4:07 a.m.
Chris Weed schrieb:
>> { >> return t.get<0>(); >> }
{ return boost::get<0>(t); }
Does this really have anything to do with mpl::at_c, as the subject implies? It looks like it's all about tuples. Also, is it the Boost implementation of tr1 or some other vendor's? If you have found a bug, please enter a ticket by following the newticket link at http://svn.boost.org/trac/boost. Thanks.
I was mistaken about what was generating the compile error. I think it had to do with there not being a get member function in boost::tuple<int> This confused me since I thought I had used that in the past, and the doc's suggested it worked. Chris