Skip to content

Commit 0647ce2

Browse files
committed
Minor edit.
1 parent 2e4487c commit 0647ce2

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

lib/Sema/DerivedConformanceTensorArrayProtocol.cpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -515,12 +515,12 @@ deriveBodyTensorArrayProtocol_init(AbstractFunctionDecl *funcDecl) {
515515
}
516516

517517
auto *thenBody = BraceStmt::create(
518-
C, SourceLoc(), C.AllocateCopy(thenMemberExprs), SourceLoc(),
519-
/*implicit*/ true);
518+
C, SourceLoc(), C.AllocateCopy(thenMemberExprs), SourceLoc(),
519+
/*implicit*/ true);
520520

521521
auto *elseBody = BraceStmt::create(
522-
C, SourceLoc(), C.AllocateCopy(elseMemberExprs), SourceLoc(),
523-
/*implicit*/ true);
522+
C, SourceLoc(), C.AllocateCopy(elseMemberExprs), SourceLoc(),
523+
/*implicit*/ true);
524524

525525
auto *ifStmt = new (C)
526526
IfStmt(LabeledStmtInfo(), /*IfLoc*/ SourceLoc(),
@@ -547,13 +547,13 @@ static ValueDecl
547547
Type intType = C.getIntDecl()->getDeclaredType();
548548

549549
auto *param1 = new (C) ParamDecl(
550-
VarDecl::Specifier::Default, SourceLoc(), SourceLoc(),
551-
C.getIdentifier("_owning"), SourceLoc(), C.getIdentifier("tensorHandles"),
552-
parentDC);
550+
VarDecl::Specifier::Default, SourceLoc(), SourceLoc(),
551+
C.getIdentifier("_owning"), SourceLoc(), C.getIdentifier("tensorHandles"),
552+
parentDC);
553553
param1->setInterfaceType(addressType);
554554
auto *param2 = new (C) ParamDecl(
555-
VarDecl::Specifier::Default, SourceLoc(), SourceLoc(),
556-
C.getIdentifier("count"), SourceLoc(), C.getIdentifier("count"), parentDC);
555+
VarDecl::Specifier::Default, SourceLoc(), SourceLoc(),
556+
C.getIdentifier("count"), SourceLoc(), C.getIdentifier("count"), parentDC);
557557
param2->setInterfaceType(intType);
558558
ParameterList *params = ParameterList::create(C, {param1, param2});
559559

0 commit comments

Comments
 (0)