Fix fpd memory leak in TBreakPointIdMap. Patch by ccrause

git-svn-id: trunk@62484 -
This commit is contained in:
martin 2020-01-04 03:56:58 +00:00
parent 4e918eebdd
commit 365888b1de

View File

@ -59,7 +59,7 @@ uses
type
TFPDCommandHandler = procedure(AParams: String; out CallProcessLoop: boolean);
TBreakPointIdMap = class(specialize TFPGMap<Integer, TFpInternalBreakpoint>)
TBreakPointIdMap = class(specialize TFPGMapObject<Integer, TFpInternalBreakpoint>)
public
function DoBreakPointCompare(Key1, Key2: Pointer): Integer;
end;