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 846d59d commit 4533c32Copy full SHA for 4533c32
clang-tools-extra/docs/clang-tidy/checks/misc/const-correctness.rst
@@ -197,11 +197,12 @@ Options
197
int *changing_pointee = &value;
198
changing_pointee = &result;
199
200
-.. option:: AllowedTypes (default = '')
+.. option:: AllowedTypes
201
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``).
208
+ Default is empty.
0 commit comments