Ok, this works on my compiler (vs2008) but I'm trying to figure out if I'm doing something non-standard. Here's a trivial example what I'm doing:
std::tr1::array<int, 3> OneTwoThree() {
return boost::assign::list_of(1)(2)(3).to_array(std::tr1::array<int, 3>());
}
I'm cheating around the fact that the to_array adapter doesn't actually use the argument you pass into it, it's just using it to figure out the type. The examples, however, show it being used more like this:
std::tr1::array<int, 3> a = boost::assign::list_of(1)(2)(3).to_array(a);
Any ideas on whether or not just throwing a value-initialized array into to_array it is kosher? Is there a cleaner way to do this?