From ae4b94570e6fa5f564d02eb7ebecd6be6fd64ee8 Mon Sep 17 00:00:00 2001 From: TimGrun Date: Fri, 9 Jan 2026 14:22:36 +0100 Subject: [PATCH] fix ambiguous != --- src/thorin/util/hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thorin/util/hash.h b/src/thorin/util/hash.h index 8c1522bb0..d55241654 100644 --- a/src/thorin/util/hash.h +++ b/src/thorin/util/hash.h @@ -351,7 +351,7 @@ class HashTable { pos.verify(); assert(pos.table_ == this && "iterator does not match to this table"); assert(!empty()); - assert(pos != end() && !is_invalid(pos.ptr_)); + assert(pos != cend() && !is_invalid(pos.ptr_)); --size_; value_type empty; key(&empty) = H::sentinel();