mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-01 14:15:23 +02:00
change to CPPASTCatchHandler constructor
This commit is contained in:
parent
46ea38b3b1
commit
b90fcb3b0c
1 changed files with 1 additions and 2 deletions
|
@ -29,8 +29,7 @@ public class CPPASTCatchHandler extends CPPASTNode implements ICPPASTCatchHandle
|
|||
public CPPASTCatchHandler() {
|
||||
}
|
||||
|
||||
public CPPASTCatchHandler(boolean isCatchAll, IASTStatement body, IASTDeclaration declaration) {
|
||||
this.isCatchAll = isCatchAll;
|
||||
public CPPASTCatchHandler(IASTDeclaration declaration, IASTStatement body) {
|
||||
setCatchBody(body);
|
||||
setDeclaration(declaration);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue