diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp b/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp index e868303c5ba..0d3c46bdaf5 100644 --- a/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/readability/ReadabilityTidyModule.cpp @@ -15,6 +15,7 @@ #include "ElseAfterReturnCheck.h" #include "FunctionSizeCheck.h" #include "RedundantSmartptrGetCheck.h" +#include "RedundantStringCStrCheck.h" #include "ShrinkToFitCheck.h" namespace clang { @@ -34,19 +35,20 @@ public: "readability-function-size"); CheckFactories.registerCheck<RedundantSmartptrGetCheck>( "readability-redundant-smartptr-get"); - CheckFactories.registerCheck<ShrinkToFitCheck>( - "readability-shrink-to-fit"); + CheckFactories.registerCheck<RedundantStringCStrCheck>( + "readability-redundant-string-cstr"); + CheckFactories.registerCheck<ShrinkToFitCheck>("readability-shrink-to-fit"); } }; -} // namespace readability +// Register the ReadabilityModule using this statically initialized variable. +static ClangTidyModuleRegistry::Add<ReadabilityModule> + X("readability-module", "Adds readability-related checks."); -// Register the MiscTidyModule using this statically initialized variable. -static ClangTidyModuleRegistry::Add<readability::ReadabilityModule> -X("readability-module", "Adds readability-related checks."); +} // namespace readability // This anchor is used to force the linker to link in the generated object file -// and thus register the MiscModule. +// and thus register the ReadabilityModule. volatile int ReadabilityModuleAnchorSource = 0; } // namespace tidy |