diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp')
-rw-r--r-- | clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp b/clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp index d5e4168ca35..6ba020667b7 100644 --- a/clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp @@ -40,7 +40,7 @@ public: CheckFactories.registerCheck<google::build::UnnamedNamespaceInHeaderCheck>( "cert-dcl59-cpp"); // OOP - CheckFactories.registerCheck<MoveConstructorInitCheck>( + CheckFactories.registerCheck<misc::MoveConstructorInitCheck>( "cert-oop11-cpp"); // ERR CheckFactories.registerCheck<SetLongJmpCheck>( @@ -49,12 +49,12 @@ public: "cert-err58-cpp"); CheckFactories.registerCheck<ThrownExceptionTypeCheck>( "cert-err60-cpp"); - CheckFactories.registerCheck<ThrowByValueCatchByReferenceCheck>( + CheckFactories.registerCheck<misc::ThrowByValueCatchByReferenceCheck>( "cert-err61-cpp"); // C checkers // DCL - CheckFactories.registerCheck<StaticAssertCheck>( + CheckFactories.registerCheck<misc::StaticAssertCheck>( "cert-dcl03-c"); // ENV CheckFactories.registerCheck<CommandProcessorCheck>( @@ -63,7 +63,7 @@ public: CheckFactories.registerCheck<FloatLoopCounter>( "cert-flp30-c"); // FIO - CheckFactories.registerCheck<NonCopyableObjectsCheck>( + CheckFactories.registerCheck<misc::NonCopyableObjectsCheck>( "cert-fio38-c"); // ERR CheckFactories.registerCheck<StrToNumCheck>( |