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())


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to