Skip to content

Commit 8826a4b

Browse files
committed
formaatting
1 parent fd278cd commit 8826a4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clang/include/clang/AST/Expr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3031,7 +3031,7 @@ class CallExpr : public Expr {
30313031

30323032
Expr *getCallee() { return cast<Expr>(getTrailingStmts()[FN]); }
30333033
const Expr *getCallee() const { return cast<Expr>(getTrailingStmts()[FN]); }
3034-
void setCallee(Expr *F) { getTrailingStmts()[FN] = F;}
3034+
void setCallee(Expr *F) { getTrailingStmts()[FN] = F; }
30353035

30363036
ADLCallKind getADLCallKind() const {
30373037
return static_cast<ADLCallKind>(CallExprBits.UsesADL);
@@ -3230,7 +3230,7 @@ class CallExpr : public Expr {
32303230
// FIXME: Some builtins have no callee begin location
32313231
SourceLocation begin = getCallee()->getBeginLoc();
32323232
if (begin.isInvalid() && getNumArgs() > 0 && getArg(0))
3233-
begin = getArg(0)->getBeginLoc();
3233+
begin = getArg(0)->getBeginLoc();
32343234
return begin;
32353235
}
32363236

0 commit comments

Comments
 (0)