mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +02:00
createLocation(long) new method.
This commit is contained in:
parent
115779c65b
commit
13b78e7300
1 changed files with 9 additions and 1 deletions
|
@ -395,8 +395,16 @@ public class BreakpointManager extends SessionObject implements ICDIBreakpointMa
|
|||
/**
|
||||
* @see org.eclipse.cdt.debug.core.cdi.ICDIBreakpointManager#createLocation(String, String, int)
|
||||
*/
|
||||
public ICDILocation createLocation( String file, String function, int line) {
|
||||
public ICDILocation createLocation(String file, String function, int line) {
|
||||
return new Location(file, function, line);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see org.eclipse.cdt.debug.core.cdi.ICDIBreakpointManager#createLocation(long)
|
||||
*/
|
||||
public ICDILocation createLocation(long address) {
|
||||
return new Location(address);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue