mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
added parameters to constructor of CPPASTCastExpression
This commit is contained in:
parent
b388adcbe5
commit
bc7b6a3bd8
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ public class CPPASTCastExpression extends CPPASTUnaryExpression implements ICPPA
|
|||
public CPPASTCastExpression() {
|
||||
}
|
||||
|
||||
public CPPASTCastExpression(IASTTypeId typeId) {
|
||||
public CPPASTCastExpression(int operator, IASTTypeId typeId, IASTExpression operand) {
|
||||
super(operator, operand);
|
||||
setTypeId(typeId);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue