summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/AST.h
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2009-11-10 15:15:51 +0100
committerRoberto Raggi <roberto.raggi@nokia.com>2009-11-10 16:20:12 +0100
commit30c67f43dfffc146d67563912dab1e2e586057a8 (patch)
tree422ac8ba55ff12e5e60f3c464524ea252a60b8bd /src/shared/cplusplus/AST.h
parent380bce45276e2bff94dcd4453e5d65ffa53bd385 (diff)
downloadqt-creator-30c67f43dfffc146d67563912dab1e2e586057a8.tar.gz
Cleanup Catch clause
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r--src/shared/cplusplus/AST.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h
index 97a56da8ef..190b5cb560 100644
--- a/src/shared/cplusplus/AST.h
+++ b/src/shared/cplusplus/AST.h
@@ -1899,7 +1899,7 @@ class CPLUSPLUS_EXPORT TryBlockStatementAST: public StatementAST
public:
unsigned try_token;
StatementAST *statement;
- CatchClauseAST *catch_clause_seq;
+ CatchClauseListAST *catch_clause_list;
public:
virtual TryBlockStatementAST *asTryBlockStatement() { return this; }
@@ -1919,7 +1919,6 @@ public:
ExceptionDeclarationAST *exception_declaration;
unsigned rparen_token;
StatementAST *statement;
- CatchClauseAST *next;
public: // annotations
Block *symbol;