mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 09:28:19 +02:00
* In view of recent bug, use traditional for i:=Low() to High instead of for in
git-svn-id: trunk@27090 -
This commit is contained in:
parent
742c590a3a
commit
c07559bbd1
@ -1204,6 +1204,7 @@ end;
|
||||
Function TTextWriter.Write(Const Args: Array of const) : Integer;
|
||||
|
||||
Var
|
||||
I : Integer;
|
||||
V : TVarRec;
|
||||
S : String;
|
||||
U : UnicodeString;
|
||||
@ -1211,8 +1212,9 @@ Var
|
||||
|
||||
begin
|
||||
Result:=0;
|
||||
For V in Args do
|
||||
For I:=Low(Args) to High(Args) do
|
||||
begin
|
||||
V:=Args[i];
|
||||
S:='';
|
||||
U:='';
|
||||
case V.VType of
|
||||
|
Loading…
Reference in New Issue
Block a user