From 0a29557bf831e375089e5f0e058a8ce7ecd35c0d Mon Sep 17 00:00:00 2001 From: Piotr Dziwinski Date: Sat, 24 Oct 2015 20:11:47 +0000 Subject: Test commit llvm-svn: 251204 --- .../readability/InconsistentDeclarationParameterNameCheck.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang-tools-extra') diff --git a/clang-tools-extra/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp b/clang-tools-extra/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp index 9454503b3cd..7c24d5be6f9 100644 --- a/clang-tools-extra/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp +++ b/clang-tools-extra/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp @@ -66,9 +66,9 @@ bool checkIfFixItHintIsApplicable( const ParmVarDecl *SourceParam, const FunctionDecl *OriginalDeclaration) { // Assumptions with regard to function declarations/definition: // * If both function declaration and definition are seen, assume that - // definition is most up-to-date, and use it to generate replacements. + // definition is most up-to-date, and use it to generate replacements. // * If only function declarations are seen, there is no easy way to tell - // which is up-to-date and which is not, so don't do anything. + // which is up-to-date and which is not, so don't do anything. // TODO: This may be changed later, but for now it seems the reasonable // solution. if (!ParameterSourceDeclaration->isThisDeclarationADefinition()) -- cgit v1.2.3