1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Fixed a compiler warning.

This commit is contained in:
Sergey Prigogin 2008-11-24 05:22:08 +00:00
parent 2cbb09f6e7
commit 585e6cccbd

View file

@ -81,7 +81,7 @@ public class ResolveBindingTests extends BaseUITestCase {
return name;
}
private void checkBinding(IASTName name, Class clazz) {
private void checkBinding(IASTName name, Class<?> clazz) {
IBinding binding;
binding= name.resolveBinding();
assertNotNull("Cannot resolve binding", binding);
@ -102,7 +102,6 @@ public class ResolveBindingTests extends BaseUITestCase {
// ++var; // r1
// ++ns::var; // r2
// }
public void testNamespaceVarBinding() throws Exception {
String content = readTaggedComment("namespace-var-test");
IFile file= createFile(fCProject.getProject(), "nsvar.cpp", content);