fixed compilation under 1.0.7

git-svn-id: trunk@3787 -
This commit is contained in:
mattias 2003-01-04 17:39:06 +00:00
parent 78f7985d2e
commit f80cd88791

View File

@ -356,9 +356,11 @@ end;
procedure TIdentifierList.Clear;
var
i: Integer;
p: Pointer;
begin
for i:=0 to FCreatedIdentifiers.Count-1 do begin
FreeMem(FCreatedIdentifiers[i]);
p:=FCreatedIdentifiers[i];
FreeMem(p);
end;
FCreatedIdentifiers.Clear;
FItems.FreeAndClear;