Explorar el Código

* 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 hace 11 años
padre
commit
e8c1a44068
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;