I'm trying to create a vector for D3DXMATRIXA16
like so: vector<D3DXMATRIXA16> matrices;
and am getting the error:
d:\Program Files\Microsoft Visual Studio 9.0\VC\include\vector(717) :
error C2719: '_Val': formal parameter with __declspec(align('16')) won't be aligned
e:\projects\emuntitled\em\emscratch\emshadow.h(60) :
:see reference to class template instantiation 'std::vector<_Ty>' being compiled with [ _Ty=D3DXMATRIXA16 ]
Why is that exactly?
Thanks for any help!