From 8606de83c97b8d2d672f6db91b7aa315cbad26c8 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 8 Mar 2017 06:35:17 +1000 Subject: [PATCH 1/1] Revert IL_REMOVE fix (breaks too much) --- qcsrc/lib/intrusivelist.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/lib/intrusivelist.qh b/qcsrc/lib/intrusivelist.qh index c83b2e69c7..4fa49d3f3b 100644 --- a/qcsrc/lib/intrusivelist.qh +++ b/qcsrc/lib/intrusivelist.qh @@ -121,7 +121,7 @@ void IL_REMOVE(IntrusiveList this, entity it) assert(this, return); .entity il_next = this.il_nextfld; .entity il_prev = this.il_prevfld; - assert(!IL_CONTAINS(this, it), return); + //assert(!IL_CONTAINS(this, it), return); entity next = it.(il_next); entity prev = it.(il_prev); entity ohead = this.il_head; -- 2.39.2