aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Parse/Action.h
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-05-16 07:06:02 +0000
committerMike Stump <mrs@apple.com>2009-05-16 07:06:02 +0000
commitc6e35aae23bc3cea7daf5ee075fa695c01c0f66f (patch)
tree628bee6ce0ee4423309c02baf6fba63e1e6bca27 /include/clang/Parse/Action.h
parentd79bf3976ba83c8bd30dacf6a180fd3515610c38 (diff)
Implement a FIXME, we now pass in the locations of the braces for enums.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71930 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Parse/Action.h')
-rw-r--r--include/clang/Parse/Action.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/clang/Parse/Action.h b/include/clang/Parse/Action.h
index b65560bb24..6b137ce518 100644
--- a/include/clang/Parse/Action.h
+++ b/include/clang/Parse/Action.h
@@ -408,7 +408,8 @@ public:
SourceLocation EqualLoc, ExprTy *Val) {
return DeclPtrTy();
}
- virtual void ActOnEnumBody(SourceLocation EnumLoc, DeclPtrTy EnumDecl,
+ virtual void ActOnEnumBody(SourceLocation EnumLoc, SourceLocation LBraceLoc,
+ SourceLocation RBraceLoc, DeclPtrTy EnumDecl,
DeclPtrTy *Elements, unsigned NumElements) {}
//===--------------------------------------------------------------------===//