2010/3/10 gast128
That's fine, but how does one intialise a Boost.Array in member intialiser
list
boost::array MakeArray()
{
boost::array res = { 1, 2, 3, 4 };
return res;
}
struct Foo
{
Foo() : m_a(MakeArray()) {}
boost::array m_a;
};
Roman Perepelitsa.