Skip to content

Commit 5338629

Browse files
committed
Revert rG299aa4dfa1d8c120648b1404b481d858b76c8173 "Misleading unicode identifier detection pass"
This is failing on various buildbots: https://lab.llvm.org/buildbot/#/builders/109/builds/25932
1 parent 29a8b1f commit 5338629

File tree

7 files changed

+2
-239
lines changed

7 files changed

+2
-239
lines changed

clang-tools-extra/clang-tidy/misc/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ set(LLVM_LINK_COMPONENTS
66
add_clang_library(clangTidyMiscModule
77
DefinitionsInHeadersCheck.cpp
88
MiscTidyModule.cpp
9-
MisleadingIdentifier.cpp
109
MisplacedConstCheck.cpp
1110
NewDeleteOverloadsCheck.cpp
1211
NoRecursionCheck.cpp

clang-tools-extra/clang-tidy/misc/MisleadingIdentifier.cpp

Lines changed: 0 additions & 163 deletions
This file was deleted.

clang-tools-extra/clang-tidy/misc/MisleadingIdentifier.h

Lines changed: 0 additions & 31 deletions
This file was deleted.

clang-tools-extra/docs/ReleaseNotes.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,12 @@ New checks
101101
Reports identifiers whose names are too short. Currently checks local
102102
variables and function parameters only.
103103

104+
104105
- New :doc:`readability-data-pointer <clang-tidy/checks/readability-data-pointer>` check.
105106

106107
Finds cases where code could use ``data()`` rather than the address of the
107108
element at index 0 in a container.
108109

109-
- New :doc:`misc-misleading-identifier <clang-tidy/checks/misc-misleading-identifier>` check.
110-
111-
Reports identifier with unicode right-to-left characters.
112-
113110
New check aliases
114111
^^^^^^^^^^^^^^^^^
115112

clang-tools-extra/docs/clang-tidy/checks/list.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ Clang-Tidy Checks
212212
`llvmlibc-implementation-in-namespace <llvmlibc-implementation-in-namespace.html>`_,
213213
`llvmlibc-restrict-system-libc-headers <llvmlibc-restrict-system-libc-headers.html>`_, "Yes"
214214
`misc-definitions-in-headers <misc-definitions-in-headers.html>`_, "Yes"
215-
`misc-misleading-identifier <misc-mileading-identifier.html>`_,
216215
`misc-misplaced-const <misc-misplaced-const.html>`_,
217216
`misc-new-delete-overloads <misc-new-delete-overloads.html>`_,
218217
`misc-no-recursion <misc-no-recursion.html>`_,
@@ -450,4 +449,4 @@ Clang-Tidy Checks
450449
`hicpp-vararg <hicpp-vararg.html>`_, `cppcoreguidelines-pro-type-vararg <cppcoreguidelines-pro-type-vararg.html>`_,
451450
`llvm-else-after-return <llvm-else-after-return.html>`_, `readability-else-after-return <readability-else-after-return.html>`_, "Yes"
452451
`llvm-qualified-auto <llvm-qualified-auto.html>`_, `readability-qualified-auto <readability-qualified-auto.html>`_, "Yes"
453-
452+

clang-tools-extra/docs/clang-tidy/checks/misc-misleading-identifier.rst

Lines changed: 0 additions & 23 deletions
This file was deleted.

clang-tools-extra/test/clang-tidy/checkers/misc-misleading-identifier.cpp

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)