File tree Expand file tree Collapse file tree 8 files changed +0
-340
lines changed Expand file tree Collapse file tree 8 files changed +0
-340
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,6 @@ add_clang_library(clangTidyReadabilityModule STATIC
58
58
UniqueptrDeleteReleaseCheck.cpp
59
59
UppercaseLiteralSuffixCheck.cpp
60
60
UseAnyOfAllOfCheck.cpp
61
- UseNumericLimitsCheck.cpp
62
61
UseStdMinMaxCheck.cpp
63
62
64
63
LINK_LIBS
Original file line number Diff line number Diff line change 61
61
#include " UniqueptrDeleteReleaseCheck.h"
62
62
#include " UppercaseLiteralSuffixCheck.h"
63
63
#include " UseAnyOfAllOfCheck.h"
64
- #include " UseNumericLimitsCheck.h"
65
64
#include " UseStdMinMaxCheck.h"
66
65
67
66
namespace clang ::tidy {
@@ -174,8 +173,6 @@ class ReadabilityModule : public ClangTidyModule {
174
173
" readability-uppercase-literal-suffix" );
175
174
CheckFactories.registerCheck <UseAnyOfAllOfCheck>(
176
175
" readability-use-anyofallof" );
177
- CheckFactories.registerCheck <UseNumericLimitsCheck>(
178
- " readability-use-numeric-limits" );
179
176
CheckFactories.registerCheck <UseStdMinMaxCheck>(
180
177
" readability-use-std-min-max" );
181
178
}
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -154,12 +154,6 @@ New checks
154
154
Finds potentially erroneous calls to ``reset `` method on smart pointers when
155
155
the pointee type also has a ``reset `` method.
156
156
157
- - New :doc: `readability-use-numeric-limits
158
- <clang-tidy/checks/readability/use-numeric-limits>` check.
159
-
160
- Finds certain integer literals and suggests replacing them with equivalent
161
- ``std::numeric_limits `` calls.
162
-
163
157
New check aliases
164
158
^^^^^^^^^^^^^^^^^
165
159
Original file line number Diff line number Diff line change @@ -409,7 +409,6 @@ Clang-Tidy Checks
409
409
:doc: `readability-uniqueptr-delete-release <readability/uniqueptr-delete-release >`, "Yes"
410
410
:doc: `readability-uppercase-literal-suffix <readability/uppercase-literal-suffix >`, "Yes"
411
411
:doc: `readability-use-anyofallof <readability/use-anyofallof >`,
412
- :doc: `readability-use-numeric-limits <readability/use-numeric-limits >`, "Yes"
413
412
:doc: `readability-use-std-min-max <readability/use-std-min-max >`, "Yes"
414
413
:doc: `zircon-temporary-objects <zircon/temporary-objects >`,
415
414
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments