aboutsummaryrefslogtreecommitdiff
path: root/clang-tidy/cert/CERTTidyModule.cpp
diff options
context:
space:
mode:
authorMalcolm Parsons <malcolm.parsons@gmail.com>2016-12-17 20:23:14 +0000
committerMalcolm Parsons <malcolm.parsons@gmail.com>2016-12-17 20:23:14 +0000
commitc0907030041f3b78e521c94fbff781af945abd58 (patch)
tree37c6713737a1098cf65a13b8f165ba1f517afd65 /clang-tidy/cert/CERTTidyModule.cpp
parenta080ed599c8ac6f61147a0300a25204d8c07bb9b (diff)
[clang-tidy] Remove duplicated check from move-constructor-init
Summary: An addition to the move-constructor-init check was duplicating the modernize-pass-by-value check. Remove the additional check and UseCERTSemantics option. Run the move-constructor-init test with both checks enabled. Fix modernize-pass-by-value false-positive when initializing a base class. Add option to modernize-pass-by-value to only warn about parameters that are already values. Reviewers: alexfh, flx, aaron.ballman Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D26453 git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@290051 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'clang-tidy/cert/CERTTidyModule.cpp')
-rw-r--r--clang-tidy/cert/CERTTidyModule.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/clang-tidy/cert/CERTTidyModule.cpp b/clang-tidy/cert/CERTTidyModule.cpp
index d88825be..d28f013a 100644
--- a/clang-tidy/cert/CERTTidyModule.cpp
+++ b/clang-tidy/cert/CERTTidyModule.cpp
@@ -67,11 +67,6 @@ public:
// MSC
CheckFactories.registerCheck<LimitedRandomnessCheck>("cert-msc30-c");
}
- ClangTidyOptions getModuleOptions() override {
- ClangTidyOptions Options;
- Options.CheckOptions["cert-oop11-cpp.UseCERTSemantics"] = "1";
- return Options;
- }
};
} // namespace cert