File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -107,9 +107,9 @@ Changes in existing checks
107
107
additional C++ member functions to match.
108
108
109
109
- Improved :doc: `misc-const-correctness
110
- <clang-tidy/checks/misc/const-correctness>` check by adding
111
- the option `AllowedTypes `, that excludes specified types
112
- from const-correctness checking.
110
+ <clang-tidy/checks/misc/const-correctness>` check by adding the option
111
+ `AllowedTypes `, that excludes specified types from const-correctness
112
+ checking.
113
113
114
114
- Improved :doc: `misc-redundant-expression
115
115
<clang-tidy/checks/misc/redundant-expression>` check by providing additional
Original file line number Diff line number Diff line change @@ -199,10 +199,9 @@ Options
199
199
200
200
.. option :: AllowedTypes (default = '')
201
201
202
- A semicolon-separated list of names of types that
203
- will be excluded from const-correctness checking.
204
- Regular expressions are accepted, e.g. `[Rr]ef(erence)?$ ` matches every type
205
- with suffix `Ref `, `ref `, `Reference ` and `reference `.
206
- If a name in the list contains the sequence `:: `, it is matched against
207
- the qualified type name (i.e. ``namespace::Type ``), otherwise it is matched
208
- against only the type name (i.e. ``Type ``).
202
+ A semicolon-separated list of names of types that will be excluded from
203
+ const-correctness checking. Regular expressions are accepted, e.g.
204
+ `[Rr]ef(erence)?$ ` matches every type with suffix `Ref `, `ref `, `Reference `
205
+ and `reference `. If a name in the list contains the sequence `:: `, it is
206
+ matched against the qualified type name (i.e. ``namespace::Type ``),
207
+ otherwise it is matched against only the type name (i.e. ``Type ``).
You can’t perform that action at this time.
0 commit comments