File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments