Browse Source

Variants: add varQWord to OrdinalVarTypes and varDecimal to FloatVarTypes

git-svn-id: trunk@45572 -
ondrej 5 years ago
parent
commit
896b7c8dc2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/rtl-objpas/src/inc/variants.pp

+ 2 - 2
packages/rtl-objpas/src/inc/variants.pp

@@ -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 }