From ff792542642cf1aee8da6069f45a7322af7c8a74 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 6 Oct 2024 19:46:16 -0600 Subject: s/assert(false)/__builtin_unreachable()/ --- lib9p/map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib9p') diff --git a/lib9p/map.h b/lib9p/map.h index dcb6ecd..a13edb5 100644 --- a/lib9p/map.h +++ b/lib9p/map.h @@ -84,7 +84,7 @@ static VAL_T *MAP_METHOD(NAME,store)(struct NAME *m, KEY_T k, VAL_T v) { m->items[i].val = v; return &(m->items[i].val); } - assert(false); + __builtin_unreachable(); } /** -- cgit v1.2.3-2-g168b