mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-23 18:49:30 +02:00
Debugger: fix calling abstract method "BelongsToInstance" on watchpoint. Introduced 4e4c402b62
This commit is contained in:
parent
5708b50487
commit
f3bf79fa35
@ -459,6 +459,7 @@ type
|
||||
constructor Create(const AProcess: TDbgProcess; const ALocation: TDBGPtr; ASize: Cardinal; AReadWrite: TDBGWatchPointKind;
|
||||
AScope: TDBGWatchPointScope); virtual;
|
||||
destructor Destroy; override;
|
||||
function BelongsToInstance(const AnInstance: TDbgInstance): Boolean; override;
|
||||
|
||||
procedure SetBreak; override;
|
||||
procedure ResetBreak; override;
|
||||
@ -3543,6 +3544,12 @@ begin
|
||||
inherited Destroy;
|
||||
end;
|
||||
|
||||
function TFpInternalWatchpoint.BelongsToInstance(const AnInstance: TDbgInstance
|
||||
): Boolean;
|
||||
begin
|
||||
Result := False;
|
||||
end;
|
||||
|
||||
procedure TFpInternalWatchpoint.SetBreak;
|
||||
var
|
||||
a: TDBGPtr;
|
||||
|
Loading…
Reference in New Issue
Block a user