diff options
author | Mike Spertus <mike@spertus.com> | 2016-03-05 01:56:07 +0000 |
---|---|---|
committer | Mike Spertus <mike@spertus.com> | 2016-03-05 01:56:07 +0000 |
commit | c4572c2a854e19457c45e2e337692cb1cb11bcb9 (patch) | |
tree | 8582130e7f69147dab38abfd5c4ce877e9893a9b /clang/lib/Parse/ParseDecl.cpp | |
parent | a1d9d75a8837d730446d78ca13580009126baebc (diff) | |
download | bcm5719-llvm-c4572c2a854e19457c45e2e337692cb1cb11bcb9.tar.gz bcm5719-llvm-c4572c2a854e19457c45e2e337692cb1cb11bcb9.zip |
Test commit: Fix run-on sentence in comment
llvm-svn: 262764
Diffstat (limited to 'clang/lib/Parse/ParseDecl.cpp')
-rw-r--r-- | clang/lib/Parse/ParseDecl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp index 8e6f1ab652b..52f3f9fe504 100644 --- a/clang/lib/Parse/ParseDecl.cpp +++ b/clang/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. |