fcl-passrc: fixed compile under pas2js

git-svn-id: trunk@42290 -
This commit is contained in:
Mattias Gaertner 2019-06-26 18:34:11 +00:00
parent b8369409bc
commit 02b66457f5

View File

@ -620,7 +620,7 @@ end;
{$IF FPC_FULLVERSION<30301}
Function SplitCommandLine(S: String) : TStringDynArray;
Function GetNextWord : RawByteString;
Function GetNextWord : String;
Const
WhiteSpace = [' ',#9,#10,#13];
@ -629,7 +629,7 @@ Function SplitCommandLine(S: String) : TStringDynArray;
Var
Wstart,wend : Integer;
InLiteral : Boolean;
LastLiteral : AnsiChar;
LastLiteral : Char;
Procedure AppendToResult;
@ -670,7 +670,7 @@ Function SplitCommandLine(S: String) : TStringDynArray;
end;
Var
W : RawByteString;
W : String;
len : Integer;
begin