Преглед изворни кода

* 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 -

nickysn пре 11 година
родитељ
комит
e8c1a44068
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      rtl/inc/tinyheap.inc

+ 1 - 1
rtl/inc/tinyheap.inc

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