
3 May
2006
3 May
'06
7:45 p.m.
Hello, At the bottom of the page http://spirit.sourceforge.net/dl_more/fusion_v2/libs/fusion/doc/html/fusion/... there is the following example: vector<int, float> v(12, 5.5f); std::cout << at<0>(v) << std::endl; std::cout << at<1>(v) << std::endl; The example as such does not compile, Shouldn't it be:std::cout << at_c<0>(v) << std::endl;orstd::cout << at<boost::mpl::int_<0> >(v) << std::endl;