Tests: Remove C-style operators. Compilations depends on fpc.cfg. Issue #41074, patch by n7800.

This commit is contained in:
Juha 2024-09-30 00:04:06 +03:00
parent e44a70d872
commit 6b0b18c09d

View File

@ -82,8 +82,8 @@ procedure TTestLazUtils.TestSplitCmdLineParams;
try
SplitCmdLineParams(Params,ParamList,ReadBackslash);
for i:=0 to ParamList.Count-1 do begin
if i>0 then Result+='|';
Result+=ParamList[i];
if i>0 then Result:=Result+'|';
Result:=Result+ParamList[i];
end;
finally
ParamList.Free;