1
0
Fork 0
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:
Mike Kucera 2008-01-02 15:55:06 +00:00
parent b388adcbe5
commit bc7b6a3bd8

View file

@ -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);
}