mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-23 00:39:44 +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
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user