hankgao0703
Programmer
In one of my projects, I have to use __declspec(align(16) to force the memory allocation is done at 16 bytes boundary, but I alway get error:
C1306(or else) => Unsupported Data Type
When I remove __declspec(align(16)) modifier, everything seems ok.
by the way, based on the MS document, __declspec(align(xx)) is used to specify boundary for structure, Can I use it for memory allocation for an array?
Thanks in advance!
C1306(or else) => Unsupported Data Type
When I remove __declspec(align(16)) modifier, everything seems ok.
by the way, based on the MS document, __declspec(align(xx)) is used to specify boundary for structure, Can I use it for memory allocation for an array?
Thanks in advance!