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:
parent
2cbb09f6e7
commit
585e6cccbd
1 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue