Browse Source

rtl: added pfAddress,pfReference

mattias 5 years ago
parent
commit
726d0d3b3d
1 changed files with 3 additions and 2 deletions
  1. 3 2
      packages/rtl/typinfo.pas

+ 3 - 2
packages/rtl/typinfo.pas

@@ -159,8 +159,9 @@ type
     pfVar,     // 2^0 = 1
     pfConst,   // 2^1 = 2
     pfOut,     // 2^2 = 4
-    pfArray    // 2^3 = 8
-    //pfAddress,pfReference,
+    pfArray,   // 2^3 = 8
+    pfAddress, // 2^4 = 16
+    pfReference // 2^5 = 32
     );
   TParamFlags = set of TParamFlag;