summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-02-20 13:25:14 +0100
committerErich Eckner <git@eckner.net>2018-02-20 13:25:14 +0100
commita36621ef2dd386586ab60c412ae78d0215ffff41 (patch)
tree5612db270f5cb6940554ff895776cdfa1783d92a
parentfd7cb3056efe467d5172455fb5451e4f5a10f380 (diff)
downloadunits-a36621ef2dd386586ab60c412ae78d0215ffff41.tar.xz
lowlevelunit.pas: tLongintArrayArray, pTLongintArrayArray neu
-rw-r--r--lowlevelunit.pas2
1 files changed, 2 insertions, 0 deletions
diff --git a/lowlevelunit.pas b/lowlevelunit.pas
index f30ca0b..f08a80d 100644
--- a/lowlevelunit.pas
+++ b/lowlevelunit.pas
@@ -20,6 +20,8 @@ type
tInt64Array = specialize tArray<int64>;
tLongintArray = specialize tArray<longint>;
pTLongintArray = ^tLongintArray;
+ tLongintArrayArray = specialize tArray<tLongintArray>;
+ pTLongintArrayArray = ^tLongintArrayArray;
tSingleArray = specialize tArray<single>;
pTSingleArray = ^tSingleArray;
tInt64Point = array['x'..'y'] of int64;