From ef69911fddc3a695dec1ecbb34f26db76dd097bb Mon Sep 17 00:00:00 2001 From: Richard Brooksby Date: Thu, 9 Mar 2023 10:11:12 +0000 Subject: [PATCH] Cleaning up fixmes. moving signature on abqstruct to the start, since i couldn't find any justification for it to be at the end. it was always at the end. --- mps/code/abq.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mps/code/abq.h b/mps/code/abq.h index 435830197db..5e7a5d2f698 100644 --- a/mps/code/abq.h +++ b/mps/code/abq.h @@ -43,6 +43,7 @@ extern void ABQIterate(ABQ abq, ABQVisitor visitor, void *closure); typedef struct ABQStruct { + Sig sig; /* design.mps.sig.field */ Count elements; Size elementSize; Index in; @@ -54,8 +55,6 @@ typedef struct ABQStruct METER_DECL(pop) METER_DECL(peek) METER_DECL(delete) - - Sig sig; /* design.mps.sig.field [FIXME: Why is this at the end? RB 2023-03-09] */ } ABQStruct; #endif /* abq_h */