From d965b96e15ce9ab1551d08d39ff3a81199f40b5c Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Tue, 3 Mar 2026 16:40:49 +0800 Subject: [PATCH] fixes --- lib/system/mmdisp.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system/mmdisp.nim b/lib/system/mmdisp.nim index 3caa41d03c..7fd61e0dc3 100644 --- a/lib/system/mmdisp.nim +++ b/lib/system/mmdisp.nim @@ -78,7 +78,7 @@ else: when not usesDestructors: include "system/cellsets" when not leakDetector and not useCellIds and not defined(nimV2): - sysAssert(sizeof(FreeCell) == sizeof(Cell), "sizeof FreeCell") + sysAssert(sizeof(Cell) == sizeof(FreeCell), "sizeof FreeCell") when defined(gcRegions): # XXX due to bootstrapping reasons, we cannot use compileOption("gc", "stack") here include "system/gc_regions"