This is the declaration:
typedef enum : NSUInteger {
TTpixMLStatusOK,
TTpixMLStatusError,
TTpixMLStatusWarning,
} TTpixMLStatus;
In a simplified situation (in another class)
NSUInteger bla = TTpixMLStatusError;
is flagged with: Reference to TTpixMLStatusError is ambiguous.
This is not a new code, and I am sure it was working before. Any idea what changed in latest Xcode versions to brake this?
There is no naming conflict, I checked this N times. Also projects are cleaned re rebuilt N times.