[clang-tools-extra] r251204 - Test commit
Piotr Dziwinski via cfe-commits
cfe-commits at lists.llvm.org
Sat Oct 24 13:11:48 PDT 2015
Author: piotrdz
Date: Sat Oct 24 15:11:47 2015
New Revision: 251204
URL: http://llvm.org/viewvc/llvm-project?rev=251204&view=rev
Log:
Test commit
Modified:
clang-tools-extra/trunk/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp
Modified: clang-tools-extra/trunk/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp?rev=251204&r1=251203&r2=251204&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/readability/InconsistentDeclarationParameterNameCheck.cpp Sat Oct 24 15:11:47 2015
@@ -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())
More information about the cfe-commits
mailing list