Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[clang-tidy] Refactor: removed typos in 'AllowedTypes' option in various checks #122957

Merged
merged 3 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Options

A semicolon-separated list of the names of functions or methods to be
considered as not having side-effects. Regular expressions are accepted,
e.g. `[Rr]ef(erence)?$` matches every type with suffix `Ref`, `ref`,
`Reference` and `reference`. The default is empty. If a name in the list
contains the sequence `::` it is matched against the qualified typename
(i.e. `namespace::Type`, otherwise it is matched against only
the type name (i.e. `Type`).
e.g. ``[Rr]ef(erence)?$`` matches every type with suffix ``Ref``, ``ref``,
``Reference`` and ``reference``. The default is empty. If a name in the list
contains the sequence `::` it is matched against the qualified type name
(i.e. ``namespace::Type``), otherwise it is matched against only
the type name (i.e. ``Type``).
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,15 @@ Options

.. option:: WarnOnAllAutoCopies

When `true`, warns on any use of `auto` as the type of the range-based for
When `true`, warns on any use of ``auto`` as the type of the range-based for
loop variable. Default is `false`.

.. option:: AllowedTypes

A semicolon-separated list of names of types allowed to be copied in each
iteration. Regular expressions are accepted, e.g. `[Rr]ef(erence)?$` matches
every type with suffix `Ref`, `ref`, `Reference` and `reference`. The default
is empty. If a name in the list contains the sequence `::` it is matched
against the qualified typename (i.e. `namespace::Type`, otherwise it is
matched against only the type name (i.e. `Type`).
iteration. Regular expressions are accepted, e.g. ``[Rr]ef(erence)?$``
matches every type with suffix ``Ref``, ``ref``, ``Reference`` and
``reference``. The default is empty. If a name in the list contains the
sequence `::`, it is matched against the qualified type name
(i.e. ``namespace::Type``), otherwise it is matched against only the
type name (i.e. ``Type``).
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ Options
.. option:: AllowedTypes

A semicolon-separated list of names of types allowed to be initialized by
copying. Regular expressions are accepted, e.g. `[Rr]ef(erence)?$` matches
every type with suffix `Ref`, `ref`, `Reference` and `reference`. The default
is empty. If a name in the list contains the sequence `::` it is matched
against the qualified typename (i.e. `namespace::Type`, otherwise it is
matched against only the type name (i.e. `Type`).
copying. Regular expressions are accepted, e.g. ``[Rr]ef(erence)?$`` matches
every type with suffix ``Ref``, ``ref``, ``Reference`` and ``reference``.
The default is empty. If a name in the list contains the sequence `::`, it
is matched against the qualified type name (i.e. ``namespace::Type``),
otherwise it is matched against only the type name (i.e. ``Type``).

.. option:: ExcludedContainerTypes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ Options
.. option:: AllowedTypes

A semicolon-separated list of names of types allowed to be passed by value.
Regular expressions are accepted, e.g. `[Rr]ef(erence)?$` matches every type
with suffix `Ref`, `ref`, `Reference` and `reference`. The default is
empty. If a name in the list contains the sequence `::` it is matched against
the qualified typename (i.e. `namespace::Type`, otherwise it is matched
against only the type name (i.e. `Type`).
Regular expressions are accepted, e.g. ``[Rr]ef(erence)?$`` matches every
type with suffix ``Ref``, ``ref``, ``Reference`` and ``reference``. The
default is empty. If a name in the list contains the sequence `::`, it is
matched against the qualified type name (i.e. ``namespace::Type``),
otherwise it is matched against only the type name (i.e. ``Type``).
Loading