From: Mike Spertus Date: Sat, 5 Mar 2016 01:56:07 +0000 (+0000) Subject: Test commit: Fix run-on sentence in comment X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6429e9a08c3a1d50a84977051b68921a8b2b4d5;p=clang Test commit: Fix run-on sentence in comment git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@262764 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseDecl.cpp b/lib/Parse/ParseDecl.cpp index 8e6f1ab652..52f3f9fe50 100644 --- a/lib/Parse/ParseDecl.cpp +++ b/lib/Parse/ParseDecl.cpp @@ -1416,8 +1416,8 @@ void Parser::handleDeclspecAlignBeforeClassKey(ParsedAttributesWithRange &Attrs, 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.