Skip to content

Commit b18957f

Browse files
committed
[NFC] Fix formatting
1 parent 44fe99c commit b18957f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1375,7 +1375,8 @@ bool isVoidStar(QualType T) {
13751375
return !T.isNull() && T->isPointerType() && T->getPointeeType()->isVoidType();
13761376
}
13771377

1378-
const Expr* getPlacementNewBufferArg(const CallExpr *CE, const FunctionDecl *FD) {
1378+
const Expr *getPlacementNewBufferArg(const CallExpr *CE,
1379+
const FunctionDecl *FD) {
13791380
if (CE->getNumArgs() == 1)
13801381
return nullptr;
13811382
// Second argument of placement new must be void*

0 commit comments

Comments
 (0)