diff options
author | Alexander Kornienko <alexfh@google.com> | 2017-11-27 13:06:28 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2017-11-27 13:06:28 +0000 |
commit | 6e39e68983045fe48fb955f24afe376b46eb3600 (patch) | |
tree | 96689a4d0c1d2385d6e9f4700744748713a0c860 /clang-tools-extra/test/clang-tidy/cert-oop11-cpp.cpp | |
parent | 2d4f1427267ddfae8fcab9d7764563b0d2b959cf (diff) | |
download | bcm5719-llvm-6e39e68983045fe48fb955f24afe376b46eb3600.tar.gz bcm5719-llvm-6e39e68983045fe48fb955f24afe376b46eb3600.zip |
[clang-tidy] Move checks from misc- to performance-
Summary:
rename_check.py misc-move-constructor-init performance-move-constructor-init
rename_check.py misc-inefficient-algorithm performance-inefficient-algorithm
Reviewers: hokein, aaron.ballman
Reviewed By: hokein, aaron.ballman
Subscribers: aaron.ballman, mgorny, xazax.hun, cfe-commits
Differential Revision: https://reviews.llvm.org/D40487
llvm-svn: 319023
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/cert-oop11-cpp.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/cert-oop11-cpp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/cert-oop11-cpp.cpp b/clang-tools-extra/test/clang-tidy/cert-oop11-cpp.cpp index a4493bdc55a..650d6ec311d 100644 --- a/clang-tools-extra/test/clang-tidy/cert-oop11-cpp.cpp +++ b/clang-tools-extra/test/clang-tidy/cert-oop11-cpp.cpp @@ -16,6 +16,6 @@ struct D { // This should not produce a diagnostic because it is not covered under // the CERT guideline for OOP11-CPP. However, this will produce a diagnostic - // under misc-move-constructor-init. + // under performance-move-constructor-init. D(B b) : b(b) {} }; |