aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-02-04 22:31:32 +0000
committerMike Stump <mrs@apple.com>2009-02-04 22:31:32 +0000
commit98eb8a7a702b95183ed015706b1f1c66f5cb27a4 (patch)
treec8447654c9c0f9e1bb7655e0d01a6edf33fc347c /include/clang/Parse/Action.h
parent90350b6f815eecd9441119b1412695d33fb2b98f (diff)
Add support for blocks with explicit return types.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63784 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r--include/clang/Parse/Action.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h
index 2a860a849d..28e63b353a 100644
--- a/include/clang/Parse/Action.h
+++ b/include/clang/Parse/Action.h
@@ -772,7 +772,7 @@ public:
/// ActOnBlockArguments - This callback allows processing of block arguments.
/// If there are no arguments, this is still invoked.
- virtual void ActOnBlockArguments(Declarator &ParamInfo) {}
+ virtual void ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {}
/// ActOnBlockError - If there is an error parsing a block, this callback
/// is invoked to pop the information about the block from the action impl.