* swapped the order of the Next and Size fields in TTinyHeapBlock, because that

brings it closer (but still not equal) to the TP7 heap's internal structure

git-svn-id: trunk@28391 -
This commit is contained in:
nickysn 2014-08-12 20:38:08 +00:00
parent 5e280b3131
commit e8c1a44068

View File

@ -43,8 +43,8 @@
type
PTinyHeapBlock = ^TTinyHeapBlock;
TTinyHeapBlock = record
Size: TTinyHeapFreeBlockSize;
Next: PTinyHeapBlock;
Size: TTinyHeapFreeBlockSize;
EndAddr: pointer;
end;