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

Fix warnings.

This commit is contained in:
Markus Schorn 2008-05-21 10:50:17 +00:00
parent 15c3810c5a
commit d3afa14bd0
2 changed files with 0 additions and 3 deletions

View file

@ -26,13 +26,11 @@ public interface IPointerType extends IType {
/**
* is this a const pointer
* @throws DOMException
*/
public boolean isConst();
/**
* is this a volatile pointer
* @throws DOMException
*/
public boolean isVolatile();
}

View file

@ -12,7 +12,6 @@
package org.eclipse.cdt.internal.core.index.composite.cpp;
import org.eclipse.cdt.core.dom.ast.IPointerType;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPFunctionType;
import org.eclipse.cdt.internal.core.index.composite.CompositeFunctionType;
import org.eclipse.cdt.internal.core.index.composite.ICompositesFactory;