Hi,
I am linking to a library containing the following declaration in a header file:
#pragma DATA_ALIGN(8);
const float MyArray[] = {
0.01f,
0.02f,
...
...
...
};
i get a compiler warning saying:
warning: Error processing pragma DATA_ALIGN, verify format.
I am using the DATA_ALIGNs in other .cpp files of the library, but i do not see an error there. Not sure what is going wrong with this one.