mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 17:19:33 +02:00
* clarify dubious case statements
git-svn-id: trunk@45425 -
This commit is contained in:
parent
8d18c1792e
commit
ac208ab689
@ -445,7 +445,7 @@ begin
|
||||
'$' : HandleHexNumber;
|
||||
'-' : HandleMinus;
|
||||
'0'..'9' : HandleNumber;
|
||||
'''','#' : HandleString
|
||||
'''','#' : HandleString;
|
||||
else
|
||||
HandleUnknown;
|
||||
end;
|
||||
@ -494,7 +494,7 @@ begin
|
||||
toWString : Result:=string(fLastTokenWStr);
|
||||
toFloat : if fFloatType<>#0 then
|
||||
Result:=fLastTokenStr+fFloatType
|
||||
else Result:=fLastTokenStr
|
||||
else Result:=fLastTokenStr;
|
||||
else
|
||||
Result:=fLastTokenStr;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user