From a742b84e5d7f5b4d3da098c03ffd893e711cc0c1 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Tue, 13 Oct 2015 20:42:41 +0000 Subject: [PATCH] Exposing an existing checker under the name cert-err61-cpp, as it corresponds to the CERT C++ secure coding rule: https://www.securecoding.cert.org/confluence/display/cplusplus/ERR61-CPP.+Catch+exceptions+by+lvalue+reference llvm-svn: 250221 --- clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp b/clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp index 6fa984b04fcb..a943edf93b51 100644 --- a/clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp +++ b/clang-tools-extra/clang-tidy/cert/CERTTidyModule.cpp @@ -15,6 +15,7 @@ #include "../misc/NewDeleteOverloadsCheck.h" #include "../misc/NonCopyableObjects.h" #include "../misc/StaticAssertCheck.h" +#include "../misc/ThrowByValueCatchByReferenceCheck.h" #include "SetLongJmpCheck.h" #include "VariadicFunctionDefCheck.h" @@ -39,6 +40,8 @@ public: // ERR CheckFactories.registerCheck( "cert-err52-cpp"); + CheckFactories.registerCheck( + "cert-err61-cpp"); // C checkers // DCL