diff options
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r-- | src/shared/cplusplus/AST.h | 3 |
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; |