hello.
Is it possible to specify alignment of parent class? for example something like (which does not compiled):
template<size_t n>
class Vector : public boost::array<double,n> __attribute__ ((aligned(16)))
{
thanks
well, from comments I gather this is no good way to go. I think I will just stick to composition/alignment of private array