Skip to content

Commit 21d6a41

Browse files
committed
ReadabilityTidyModule Sorted Alphabetically
1 parent e9c899f commit 21d6a41

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,6 @@ class ReadabilityModule : public ClangTidyModule {
147147
"readability-static-definition-in-anonymous-namespace");
148148
CheckFactories.registerCheck<StringCompareCheck>(
149149
"readability-string-compare");
150-
CheckFactories.registerCheck<UseCppStyleCommentsCheck>(
151-
"readability-use-cpp-style-comments");
152150
CheckFactories.registerCheck<readability::NamedParameterCheck>(
153151
"readability-named-parameter");
154152
CheckFactories.registerCheck<NonConstParameterCheck>(
@@ -173,6 +171,8 @@ class ReadabilityModule : public ClangTidyModule {
173171
"readability-uppercase-literal-suffix");
174172
CheckFactories.registerCheck<UseAnyOfAllOfCheck>(
175173
"readability-use-anyofallof");
174+
CheckFactories.registerCheck<UseCppStyleCommentsCheck>(
175+
"readability-use-cpp-style-comments");
176176
CheckFactories.registerCheck<UseStdMinMaxCheck>(
177177
"readability-use-std-min-max");
178178
}

0 commit comments

Comments
 (0)