mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 12:59:24 +02:00
# revisions: 44389,45572
git-svn-id: branches/fixes_3_2@47094 -
This commit is contained in:
parent
9d6e63f2e3
commit
124bf1d108
@ -54,12 +54,12 @@ type
|
||||
|
||||
Const
|
||||
OrdinalVarTypes = [varSmallInt, varInteger, varBoolean, varShortInt,
|
||||
varByte, varWord,varLongWord,varInt64];
|
||||
varByte, varWord,varLongWord,varInt64,varQWord];
|
||||
FloatVarTypes = [
|
||||
{$ifndef FPUNONE}
|
||||
varSingle, varDouble,
|
||||
{$endif}
|
||||
varCurrency];
|
||||
varCurrency, varDecimal];
|
||||
|
||||
{ Variant support procedures and functions }
|
||||
|
||||
|
@ -19,7 +19,7 @@ begin
|
||||
if length(ADrive)=0 then
|
||||
Result:=0
|
||||
else
|
||||
Result := (Ord(ADrive[1]))-64;
|
||||
Result := Ord(UpCase(ADrive[1]))-64;
|
||||
end;
|
||||
|
||||
{$push}
|
||||
|
Loading…
Reference in New Issue
Block a user