From 30ca32e7638488dd080d0d22dc898ce2b2fb96d2 Mon Sep 17 00:00:00 2001 From: Richard Brooksby Date: Sun, 13 Mar 2016 14:23:41 +0000 Subject: [PATCH] Can't use count as a bitfield. Copied from Perforce Change: 189965 ServerID: perforce.ravenbrook.com --- mps/code/mpmst.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mps/code/mpmst.h b/mps/code/mpmst.h index 48f80eb2255..f998da4da21 100644 --- a/mps/code/mpmst.h +++ b/mps/code/mpmst.h @@ -281,7 +281,7 @@ typedef struct SegStruct { /* segment structure */ TraceSet white : TraceLIMIT; /* traces for which seg is white */ TraceSet nailed : TraceLIMIT; /* traces for which seg has nailed objects */ RankSet rankSet : RankLIMIT; /* ranks of references in this seg */ - Count defer : WB_DEFER_BITS; /* defer write barrier for this many scans */ + unsigned defer : WB_DEFER_BITS; /* defer write barrier for this many scans */ } SegStruct;