File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 13
13
14
14
namespace clang ::tidy::readability {
15
15
16
- // / Finds unnecessary uses of the `typename` keyword.
16
+ // / Finds redundant uses of the `typename` keyword.
17
17
// /
18
18
// / For the user-facing documentation see:
19
19
// / https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-typename.html
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ New checks
211
211
- New :doc: `readability-redundant-typename
212
212
<clang-tidy/checks/readability/redundant-typename>` check.
213
213
214
- Finds unnecessary uses of the ``typename `` keyword.
214
+ Finds redundant uses of the ``typename `` keyword.
215
215
216
216
New check aliases
217
217
^^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change 3
3
readability-redundant-typename
4
4
==============================
5
5
6
- Finds unnecessary uses of the ``typename `` keyword.
6
+ Finds redundant uses of the ``typename `` keyword.
7
7
8
- ``typename `` is unnecessary in two cases. First, before non-dependent names:
8
+ ``typename `` is redundant in two cases. First, before non-dependent names:
9
9
10
10
.. code-block :: c++
11
11
You can’t perform that action at this time.
0 commit comments