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:
parent
6c0b422478
commit
50cdba67dd
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue