mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
* avoid code duplication :)
This commit is contained in:
parent
1778fb6fe3
commit
183a10b292
@ -9142,13 +9142,6 @@ implementation
|
||||
|
||||
|
||||
function TImplementedInterface.getcopy:TImplementedInterface;
|
||||
|
||||
function stringdup(s:pshortstring):pshortstring;inline;
|
||||
begin
|
||||
getmem(result,ord(s^[0])+1);
|
||||
move(s^[0],result^[0],ord(s^[0])+1);
|
||||
end;
|
||||
|
||||
var
|
||||
i : longint;
|
||||
begin
|
||||
@ -9168,7 +9161,7 @@ implementation
|
||||
result.NameMappings:=TFPHashList.create;
|
||||
for i:=0 to NameMappings.Count-1 do
|
||||
Result.NameMappings.Add(NameMappings.NameOfIndex(i),
|
||||
stringdup(pshortstring(NameMappings.Items[i])));
|
||||
stringdup(pshortstring(NameMappings.Items[i])^));
|
||||
end;
|
||||
if assigned(ProcDefs) then
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user