r262764 - Test commit: Fix run-on sentence in comment

Mike Spertus via cfe-commits cfe-commits at lists.llvm.org
Fri Mar 4 17:56:07 PST 2016


Author: mps
Date: Fri Mar  4 19:56:07 2016
New Revision: 262764

URL: http://llvm.org/viewvc/llvm-project?rev=262764&view=rev
Log:
Test commit: Fix run-on sentence in comment


Modified:
    cfe/trunk/lib/Parse/ParseDecl.cpp

Modified: cfe/trunk/lib/Parse/ParseDecl.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Parse/ParseDecl.cpp?rev=262764&r1=262763&r2=262764&view=diff
==============================================================================
--- cfe/trunk/lib/Parse/ParseDecl.cpp (original)
+++ cfe/trunk/lib/Parse/ParseDecl.cpp Fri Mar  4 19:56:07 2016
@@ -1416,8 +1416,8 @@ void Parser::handleDeclspecAlignBeforeCl
   while (AL) {
     AttributeList *Next = AL->getNext();
 
-    // We only consider attributes using the appropriate '__declspec' spelling,
-    // this behavior doesn't extend to any other spellings.
+    // We only consider attributes using the appropriate '__declspec' spelling.
+    // This behavior doesn't extend to any other spellings.
     if (AL->getKind() == AttributeList::AT_Aligned &&
         AL->isDeclspecAttribute()) {
       // Stitch the attribute into the tag's attribute list.




More information about the cfe-commits mailing list