From 94f7304ccdf981f89a7f8491b50163edfd1ae819 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Thu, 9 Nov 2023 18:43:55 -0800 Subject: [PATCH] Keep vector for now to be overly cautious about packing [skip ci] --- src/hnsw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hnsw.h b/src/hnsw.h index a0e5318..57cdafe 100644 --- a/src/hnsw.h +++ b/src/hnsw.h @@ -204,7 +204,7 @@ typedef struct HnswElementTupleData ItemPointerData heaptids[HNSW_HEAPTIDS]; ItemPointerData neighbortid; uint16 unused2; - char data[FLEXIBLE_ARRAY_MEMBER]; + Vector data; } HnswElementTupleData; typedef HnswElementTupleData * HnswElementTuple;