1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

fix compiler error

This commit is contained in:
Mike Kucera 2009-07-23 15:45:19 +00:00
parent 0ca5db3105
commit 727c3ea87d

View file

@ -14,6 +14,7 @@ import org.eclipse.cdt.core.dom.ast.DOMException;
import org.eclipse.cdt.core.dom.ast.IASTExpression;
import org.eclipse.cdt.core.dom.ast.IType;
import org.eclipse.cdt.core.dom.ast.ITypedef;
import org.eclipse.cdt.core.dom.ast.IValue;
import org.eclipse.cdt.core.dom.ast.c.ICArrayType;
import org.eclipse.cdt.internal.core.dom.parser.ITypeContainer;
@ -121,4 +122,9 @@ public class C99ArrayType implements ICArrayType, ITypeContainer {
return clone;
}
public IValue getSize() {
// TODO Auto-generated method stub
return null;
}
}