diff options
| author | Alexander Kornienko <alexfh@google.com> | 2017-11-28 16:41:03 +0000 |
|---|---|---|
| committer | Alexander Kornienko <alexfh@google.com> | 2017-11-28 16:41:03 +0000 |
| commit | 1bfcba8ceaf3c8dc9b2443e61b8649c3506ca2f0 (patch) | |
| tree | ac2883c5617a84a282e431ec048900ff39a7178d /clang-tools-extra/test/clang-tidy/modernize-pass-by-value.cpp | |
| parent | 14230e02ffe1a42b509360d8d8b687ebc961a75e (diff) | |
| download | bcm5719-llvm-1bfcba8ceaf3c8dc9b2443e61b8649c3506ca2f0.tar.gz bcm5719-llvm-1bfcba8ceaf3c8dc9b2443e61b8649c3506ca2f0.zip | |
[clang-tidy] Move more checks from misc- to performance-
Summary:
rename_check.py misc-move-const-arg performance-move-const-arg
rename_check.py misc-noexcept-move-constructor performance-noexcept-move-constructor
Reviewers: hokein, xazax.hun
Reviewed By: xazax.hun
Subscribers: rnkovacs, klimek, mgorny, xazax.hun, cfe-commits
Differential Revision: https://reviews.llvm.org/D40507
llvm-svn: 319183
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/modernize-pass-by-value.cpp')
| -rw-r--r-- | clang-tools-extra/test/clang-tidy/modernize-pass-by-value.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang-tools-extra/test/clang-tidy/modernize-pass-by-value.cpp b/clang-tools-extra/test/clang-tidy/modernize-pass-by-value.cpp index eb9a3052998..87e22ba170c 100644 --- a/clang-tools-extra/test/clang-tidy/modernize-pass-by-value.cpp +++ b/clang-tools-extra/test/clang-tidy/modernize-pass-by-value.cpp @@ -202,7 +202,7 @@ struct S { template <typename T, int N> struct array { T A[N]; }; // Test that types that are trivially copyable will not use std::move. This will -// cause problems with misc-move-const-arg, as it will revert it. +// cause problems with performance-move-const-arg, as it will revert it. struct T { T(array<int, 10> a) : a_(a) {} // CHECK-FIXES: T(array<int, 10> a) : a_(a) {} |

