forked from github/codeql-coding-standards
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request github#640 from github/A2-7-3-doxygen
A2-7-3: Exclude Doxygen comment groups from results
- Loading branch information
Showing
4 changed files
with
73 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- `A2-7-3` - `UndocumentedUserDefinedType.ql`: | ||
- Fixes #391. Declarations for which a Doxygen comment group provides documentation will no longer produce results. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 11 additions & 9 deletions
20
cpp/autosar/test/rules/A2-7-3/UndocumentedUserDefinedType.expected
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
| test.cpp:70:7:70:12 | definition of ClassD | Declaration entry for user-defined type ClassD is missing documentation. | | ||
| test.cpp:72:7:72:7 | definition of a | Declaration entry for member variable a is missing documentation. | | ||
| test.cpp:73:14:73:14 | declaration of b | Declaration entry for member variable b is missing documentation. | | ||
| test.cpp:74:8:74:8 | declaration of f | Declaration entry for function f is missing documentation. | | ||
| test.cpp:76:7:76:7 | definition of c | Declaration entry for member variable c is missing documentation. | | ||
| test.cpp:78:6:78:6 | declaration of d | Declaration entry for function d is missing documentation. | | ||
| test.cpp:81:6:81:6 | definition of e | Declaration entry for function e is missing documentation. | | ||
| test.cpp:88:1:88:30 | definition of message_to_string_undocumented | Declaration entry for function message_to_string_undocumented is missing documentation. | | ||
| test.cpp:160:21:160:24 | definition of kBar | Declaration entry for member variable kBar is missing documentation. | | ||
| test.cpp:74:8:74:8 | declaration of j | Declaration entry for function j is missing documentation. | | ||
| test.cpp:75:8:75:8 | declaration of k | Declaration entry for function k is missing documentation. | | ||
| test.cpp:90:7:90:12 | definition of ClassD | Declaration entry for user-defined type ClassD is missing documentation. | | ||
| test.cpp:92:7:92:7 | definition of a | Declaration entry for member variable a is missing documentation. | | ||
| test.cpp:93:14:93:14 | declaration of b | Declaration entry for member variable b is missing documentation. | | ||
| test.cpp:94:8:94:8 | declaration of f | Declaration entry for function f is missing documentation. | | ||
| test.cpp:96:7:96:7 | definition of c | Declaration entry for member variable c is missing documentation. | | ||
| test.cpp:98:6:98:6 | declaration of d | Declaration entry for function d is missing documentation. | | ||
| test.cpp:101:6:101:6 | definition of e | Declaration entry for function e is missing documentation. | | ||
| test.cpp:108:1:108:30 | definition of message_to_string_undocumented | Declaration entry for function message_to_string_undocumented is missing documentation. | | ||
| test.cpp:180:21:180:24 | definition of kBar | Declaration entry for member variable kBar is missing documentation. | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters