diff options
Diffstat (limited to 'lib/system/alloc.nim')
-rwxr-xr-x | lib/system/alloc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/alloc.nim b/lib/system/alloc.nim index 53c20316c..5182d5ccf 100755 --- a/lib/system/alloc.nim +++ b/lib/system/alloc.nim @@ -113,7 +113,7 @@ type PChunk = ptr TBaseChunk PBigChunk = ptr TBigChunk PSmallChunk = ptr TSmallChunk - TBaseChunk {.pure.} = object + TBaseChunk {.pure, inheritable.} = object prevSize: int # size of previous chunk; for coalescing size: int # if < PageSize it is a small chunk used: bool # later will be optimized into prevSize... |