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

Compiler warning.

This commit is contained in:
Markus Schorn 2011-01-21 10:19:47 +00:00
parent 2c376e0343
commit d9c1b0b0c4

View file

@ -15,6 +15,7 @@ import org.eclipse.cdt.core.dom.ast.ASTVisitor;
import org.eclipse.cdt.core.dom.ast.IASTDeclarator;
import org.eclipse.cdt.core.dom.ast.IASTLiteralExpression;
import org.eclipse.cdt.core.dom.ast.IASTName;
import org.eclipse.cdt.core.dom.ast.IASTSimpleDeclSpecifier;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTCapture;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTFunctionDeclarator;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTLambdaExpression;
@ -43,7 +44,7 @@ public class ExpressionWriterTest extends TestCase {
private ASTVisitor visitor;
static {
INT.setType(CPPASTSimpleDeclSpecifier.t_int);
INT.setType(IASTSimpleDeclSpecifier.t_int);
}
@Override