my project includes a simple C file with a header. Like this:
#ifndef __IMAGE_ARRAY_3D
#define __IMAGE_ARRAY_3D
typedef struct ImageArray3D {
double *data;
LargeElement *largestElements;
int c, w, h, nLargestElements;
} tImageArray3D;
...
#endif
When I start the Xcode static analyzer, I get the following error:
The analyzer skipped this file due to analysis errors.
overriding "ImageArray3D" as another character
What is the reason for this?
source
share