Affected rules
Description
Anonymous structs provide an undistinguished qualified name - e.g. <anonymous struct>. This can cause false positives for this rule for structs which are not the same.
Example
struct OuterStruct {
struct {
SomeOtherStruct val[10];
size_t size;
} firstArray;
struct {
SomeOtherStruct val[10][2];
size_t size;
} secondArray;
};
Affected rules
RULE-8-3Description
Anonymous structs provide an undistinguished qualified name - e.g.
<anonymous struct>. This can cause false positives for this rule for structs which are not the same.Example