Skip to content

Commit 7ecf194

Browse files
committed
format
1 parent 536b281 commit 7ecf194

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

clang/lib/Sema/SemaTemplateInstantiate.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1506,8 +1506,8 @@ namespace {
15061506

15071507
TemplateArgument ForgetPartiallySubstitutedPack() {
15081508
TemplateArgument Result;
1509-
if (NamedDecl *PartialPack =
1510-
SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()) {
1509+
if (NamedDecl *PartialPack = SemaRef.CurrentInstantiationScope
1510+
->getPartiallySubstitutedPack()) {
15111511
MultiLevelTemplateArgumentList &TemplateArgs =
15121512
const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs);
15131513
unsigned Depth, Index;
@@ -1529,8 +1529,8 @@ namespace {
15291529
if (Arg.isNull())
15301530
return;
15311531

1532-
if (NamedDecl *PartialPack =
1533-
SemaRef.CurrentInstantiationScope->getPartiallySubstitutedPack()) {
1532+
if (NamedDecl *PartialPack = SemaRef.CurrentInstantiationScope
1533+
->getPartiallySubstitutedPack()) {
15341534
MultiLevelTemplateArgumentList &TemplateArgs =
15351535
const_cast<MultiLevelTemplateArgumentList &>(this->TemplateArgs);
15361536
unsigned Depth, Index;
@@ -1739,7 +1739,8 @@ namespace {
17391739
// This has to be here to allow its overload.
17401740
ExprResult RebuildPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc,
17411741
UnsignedOrNone NumExpansions) {
1742-
return inherited::RebuildPackExpansion(Pattern, EllipsisLoc, NumExpansions);
1742+
return inherited::RebuildPackExpansion(Pattern, EllipsisLoc,
1743+
NumExpansions);
17431744
}
17441745

17451746
TemplateArgumentLoc RebuildPackExpansion(TemplateArgumentLoc Pattern,

0 commit comments

Comments
 (0)