FpDebug: remove empty code

This commit is contained in:
Martin 2022-05-16 16:48:43 +02:00
parent 3ea0e03d3b
commit f190c1ff0b

View File

@ -398,9 +398,6 @@ type
{ TFpValueDwarfStructBase }
TFpValueDwarfStructBase = class(TFpValueDwarf)
protected
function GetMember(AIndex: Int64): TFpValue; override;
function GetMemberByName(const AIndex: String): TFpValue; override;
end;
TFpValueDwarfStruct = class(TFpValueDwarfStructBase)
@ -1085,20 +1082,6 @@ begin
EvaluatedFields := EvaluatedFields + [sfiAddress];
end;
{ TFpValueDwarfStructBase }
function TFpValueDwarfStructBase.GetMember(AIndex: Int64): TFpValue;
begin
Result := inherited GetMember(AIndex);
end;
function TFpValueDwarfStructBase.GetMemberByName(const AIndex: String
): TFpValue;
begin
Result := inherited GetMemberByName(AIndex);
end;
{ TFpValueDwarfSubroutine }
function TFpValueDwarfSubroutine.IsValidTypeCast: Boolean;