Skip to content

Commit 00ca132

Browse files
committed
Clang format
1 parent 53330a9 commit 00ca132

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

clang/include/clang/Parse/Parser.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1164,8 +1164,10 @@ class Parser : public CodeCompletionHandler {
11641164
unsigned NestedTypeLevel;
11651165

11661166
explicit LateParsedAttribute(Parser *P, IdentifierInfo &Name,
1167-
SourceLocation Loc, unsigned NestedTypeLevel = 0)
1168-
: Self(P), AttrName(Name), AttrNameLoc(Loc), NestedTypeLevel(NestedTypeLevel) {}
1167+
SourceLocation Loc,
1168+
unsigned NestedTypeLevel = 0)
1169+
: Self(P), AttrName(Name), AttrNameLoc(Loc),
1170+
NestedTypeLevel(NestedTypeLevel) {}
11691171

11701172
void ParseLexedAttributes() override;
11711173

clang/include/clang/Sema/DeclSpec.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2331,9 +2331,10 @@ class Declarator {
23312331
/// EndLoc, which should be the last token of the chunk.
23322332
/// This function takes attrs by R-Value reference because it takes ownership
23332333
/// of those attributes from the parameter.
2334-
void AddTypeInfo(const DeclaratorChunk &TI, ParsedAttributes &&attrs,
2335-
SourceLocation EndLoc,
2336-
ArrayRef<DeclaratorChunk::LateAttrOpaquePtr> LateAttrs = {}) {
2334+
void
2335+
AddTypeInfo(const DeclaratorChunk &TI, ParsedAttributes &&attrs,
2336+
SourceLocation EndLoc,
2337+
ArrayRef<DeclaratorChunk::LateAttrOpaquePtr> LateAttrs = {}) {
23372338
DeclTypeInfo.push_back(TI);
23382339
DeclTypeInfo.back().getAttrs().prepend(attrs.begin(), attrs.end());
23392340
getAttributePool().takeAllFrom(attrs.getPool());

0 commit comments

Comments
 (0)