1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fixed up the CPPUnaryExpression to implement the CPP interface. Bug 162404.

This commit is contained in:
Doug Schaefer 2006-10-26 15:33:42 +00:00
parent 6c0b422478
commit 50cdba67dd

View file

@ -13,15 +13,15 @@ package org.eclipse.cdt.internal.core.dom.parser.cpp;
import org.eclipse.cdt.core.dom.ast.ASTVisitor;
import org.eclipse.cdt.core.dom.ast.IASTExpression;
import org.eclipse.cdt.core.dom.ast.IASTNode;
import org.eclipse.cdt.core.dom.ast.IASTUnaryExpression;
import org.eclipse.cdt.core.dom.ast.IType;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTUnaryExpression;
import org.eclipse.cdt.internal.core.dom.parser.IASTAmbiguityParent;
/**
* @author jcamelon
*/
public class CPPASTUnaryExpression extends CPPASTNode implements
IASTUnaryExpression, IASTAmbiguityParent {
ICPPASTUnaryExpression, IASTAmbiguityParent {
private int operator;
private IASTExpression operand;