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

Deprecate 2 unused interfaces.

This commit is contained in:
Markus Schorn 2010-10-13 15:25:35 +00:00
parent 196ab5c67e
commit 2a714beac8
2 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,9 @@ import org.eclipse.cdt.core.dom.ast.cpp.ICPPPointerToMemberType;
/**
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
* @deprecated Use {@link ICPPPointerToMemberType}, instead.
*/
@Deprecated
public interface IGPPPointerToMemberType extends ICPPPointerToMemberType,
IGPPPointerType {

View file

@ -15,10 +15,8 @@ import org.eclipse.cdt.core.dom.ast.IPointerType;
/**
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
* @deprecated Use {@link IPointerType}, instead.
*/
@Deprecated
public interface IGPPPointerType extends IPointerType {
/**
* is this a restrict pointer
*/
boolean isRestrict();
}