From 115c2bd91d02184bdfb1dcdb02df28568353a68c Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 4 Oct 2023 23:09:31 -0700 Subject: [PATCH] Fixed alignment [skip ci] --- src/hnsw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnsw.h b/src/hnsw.h index 6c9809d..5d6a51f 100644 --- a/src/hnsw.h +++ b/src/hnsw.h @@ -116,8 +116,8 @@ typedef struct HnswCandidate typedef struct HnswNeighborArray { int length; - HnswCandidate *items; bool closerSet; + HnswCandidate *items; } HnswNeighborArray; typedef struct HnswPairingHeapNode