diff options
author | Erich Eckner <git@eckner.net> | 2018-02-20 13:25:14 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-02-20 13:25:14 +0100 |
commit | a36621ef2dd386586ab60c412ae78d0215ffff41 (patch) | |
tree | 5612db270f5cb6940554ff895776cdfa1783d92a | |
parent | fd7cb3056efe467d5172455fb5451e4f5a10f380 (diff) | |
download | units-a36621ef2dd386586ab60c412ae78d0215ffff41.tar.xz |
lowlevelunit.pas: tLongintArrayArray, pTLongintArrayArray neu
-rw-r--r-- | lowlevelunit.pas | 2 |
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; |