You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Discard a not so clever clang-tidy heuristic where
struct {
struct { int a; int b; int c; } s;
enum { x, y } e;
} foo;
triggers a 'bugprone-tagged-union-member-count' warning as clang-tidy
assumes that `enum e` selects one member in `struct s`!
Signed-off-by: Emmanuel Blot <[email protected]>
0 commit comments