diff options
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r-- | include/clang/Parse/Action.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h index 7178543003..d662529217 100644 --- a/include/clang/Parse/Action.h +++ b/include/clang/Parse/Action.h @@ -513,7 +513,8 @@ public: tok::TokenKind Kind, ExprTy *Input) { return 0; } - virtual ExprResult ActOnArraySubscriptExpr(ExprTy *Base, SourceLocation LLoc, + virtual ExprResult ActOnArraySubscriptExpr(Scope *S, + ExprTy *Base, SourceLocation LLoc, ExprTy *Idx, SourceLocation RLoc) { return 0; } |