Skip to content

Commit 6d427d3

Browse files
committed
Fix code format
1 parent f5acec2 commit 6d427d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/CodeGen/CodeGenFunction.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,8 @@ static bool matchesStlAllocatorFn(const Decl *D, const ASTContext &Ctx) {
721721
(MD->getNumParams() != 1 && MD->getNumParams() != 2))
722722
return false;
723723

724-
if (MD->parameters()[0]->getType().getCanonicalType() != Ctx.getCanonicalSizeType())
724+
if (MD->parameters()[0]->getType().getCanonicalType() !=
725+
Ctx.getCanonicalSizeType())
725726
return false;
726727

727728
if (MD->getNumParams() == 2) {

0 commit comments

Comments
 (0)