assert when merging associative chunks

This commit is contained in:
Nikita Smith
2024-11-21 13:29:50 -08:00
parent 8e8924fcc6
commit fbf180df2f
+2 -1
View File
@@ -191,7 +191,8 @@ lnk_chunk_deep_copy(Arena *arena, LNK_Chunk *chunk)
dst->sort_idx = push_str8_copy(arena, src->sort_idx);
dst->input_idx = src->input_idx;
dst->flags = src->flags;
dst->associate = src->associate;
//dst->associate = src->associate;
Assert(src->associate == 0);
lnk_chunk_set_debugf(arena, dst, "%S", src->debug);
switch (src->type) {