diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDILocation.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDILocation.java index ec7317a916c..a286849d907 100644 --- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDILocation.java +++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/cdi/ICDILocation.java @@ -66,4 +66,10 @@ public interface ICDILocation * @throws CDIException on failure. Reasons include: */ ICDIInstruction[] getInstructions( int maxCount ) throws CDIException; + + /** + * Return true if the both location refers to the same + * place. + */ + boolean equals(ICDILocation location); }