diff options
Diffstat (limited to 'clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.h')
-rw-r--r-- | clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.h b/clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.h index 22a80a86e53..73d0b3411d7 100644 --- a/clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.h +++ b/clang-tools-extra/clang-tidy/performance/UnnecessaryCopyInitialization.h @@ -16,10 +16,10 @@ namespace clang { namespace tidy { namespace performance { -// A check that detects const local variable declarations that are copy -// initialized with the const reference of a function call or the const -// reference of a method call whose object is guaranteed to outlive the -// variable's scope and suggests to use a const reference. +// The check detects local variable declarations that are copy initialized with +// the const reference of a function call or the const reference of a method +// call whose object is guaranteed to outlive the variable's scope and suggests +// to use a const reference. // // The check currently only understands a subset of variables that are // guaranteed to outlive the const reference returned, namely: const variables, |