diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-12-21 21:27:13 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-12-21 21:27:13 +0000 |
commit | 6c0da1154af1bedf10e470e38a6ca5c04bb099c0 (patch) | |
tree | 58ed6349df11b60932f754c2951c02840c3cc481 /clang | |
parent | eea9ca7e398d8f3e4f06f607f243e35ee21022b4 (diff) | |
download | bcm5719-llvm-6c0da1154af1bedf10e470e38a6ca5c04bb099c0.tar.gz bcm5719-llvm-6c0da1154af1bedf10e470e38a6ca5c04bb099c0.zip |
Indent.
llvm-svn: 170925
Diffstat (limited to 'clang')
-rw-r--r-- | clang/lib/Parse/ParseDecl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp index 1b0c5e9d04a..e7d5ae28bf9 100644 --- a/clang/lib/Parse/ParseDecl.cpp +++ b/clang/lib/Parse/ParseDecl.cpp @@ -458,8 +458,7 @@ void Parser::ParseMicrosoftTypeAttributes(ParsedAttributes &attrs) { while (Tok.is(tok::kw___fastcall) || Tok.is(tok::kw___stdcall) || Tok.is(tok::kw___thiscall) || Tok.is(tok::kw___cdecl) || Tok.is(tok::kw___ptr64) || Tok.is(tok::kw___w64) || - Tok.is(tok::kw___ptr32) || - Tok.is(tok::kw___unaligned)) { + Tok.is(tok::kw___ptr32) || Tok.is(tok::kw___unaligned)) { IdentifierInfo *AttrName = Tok.getIdentifierInfo(); SourceLocation AttrNameLoc = ConsumeToken(); attrs.addNew(AttrName, AttrNameLoc, 0, AttrNameLoc, 0, |