diff options
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) {} }; |