Skip to content

Commit 0e9425e

Browse files
authored
Fix indentation.
1 parent ad57896 commit 0e9425e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/AST/ASTContext.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4634,9 +4634,9 @@ IndexSubset::get(ASTContext &ctx, const SmallBitVector &indices) {
46344634
if (existing)
46354635
return existing;
46364636
auto sizeToAlloc = sizeof(IndexSubset) +
4637-
getNumBitWordsNeededForCapacity(capacity);
4637+
getNumBitWordsNeededForCapacity(capacity);
46384638
auto *buf = reinterpret_cast<IndexSubset *>(
4639-
ctx.Allocate(sizeToAlloc, alignof(IndexSubset)));
4639+
ctx.Allocate(sizeToAlloc, alignof(IndexSubset)));
46404640
auto *newNode = new (buf) IndexSubset(indices);
46414641
foldingSet.InsertNode(newNode, insertPos);
46424642
return newNode;

0 commit comments

Comments
 (0)