mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 02:19:32 +02:00
Tests: Remove C-style operators. Compilations depends on fpc.cfg. Issue #41074, patch by n7800.
This commit is contained in:
parent
e44a70d872
commit
6b0b18c09d
@ -82,8 +82,8 @@ procedure TTestLazUtils.TestSplitCmdLineParams;
|
|||||||
try
|
try
|
||||||
SplitCmdLineParams(Params,ParamList,ReadBackslash);
|
SplitCmdLineParams(Params,ParamList,ReadBackslash);
|
||||||
for i:=0 to ParamList.Count-1 do begin
|
for i:=0 to ParamList.Count-1 do begin
|
||||||
if i>0 then Result+='|';
|
if i>0 then Result:=Result+'|';
|
||||||
Result+=ParamList[i];
|
Result:=Result+ParamList[i];
|
||||||
end;
|
end;
|
||||||
finally
|
finally
|
||||||
ParamList.Free;
|
ParamList.Free;
|
||||||
|
Loading…
Reference in New Issue
Block a user