Skip to content

Commit 4533c32

Browse files
committed
[clang-tidy] fix pr docs comments
1 parent 846d59d commit 4533c32

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang-tools-extra/docs/clang-tidy/checks/misc/const-correctness.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,11 +197,12 @@ Options
197197
int *changing_pointee = &value;
198198
changing_pointee = &result;
199199
200-
.. option:: AllowedTypes (default = '')
200+
.. option:: AllowedTypes
201201

202202
A semicolon-separated list of names of types that will be excluded from
203203
const-correctness checking. Regular expressions are accepted, e.g.
204204
`[Rr]ef(erence)?$` matches every type with suffix `Ref`, `ref`, `Reference`
205205
and `reference`. If a name in the list contains the sequence `::`, it is
206206
matched against the qualified type name (i.e. ``namespace::Type``),
207207
otherwise it is matched against only the type name (i.e. ``Type``).
208+
Default is empty.

0 commit comments

Comments
 (0)