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 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;