We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f888b4 commit f4d0b35Copy full SHA for f4d0b35
clang-tools-extra/docs/clang-tidy/checks/bugprone/tagged-union-member-count.rst
@@ -43,7 +43,7 @@ system header files and the ``std`` namespace.
43
pthread_mutex_t Mutex;
44
};
45
46
-The ``pthread_mutex_t`` type may be defined as a union behind a typedef,
+The ``pthread_mutex_t`` type may be defined as a union behind a ``typedef``,
47
in which case the check could mistake this type as a user-defined tagged union.
48
After all it has exactly one enum data member and exactly one union data member.
49
To avoid false-positive cases originating from this, unions and enums from
0 commit comments