From 2db8a3105e18c1893be4b1150ba615ff05f2373d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 25 May 2026 22:24:03 +0200 Subject: [PATCH] Remove bad get_iterator case, new implementation asserts in that case --- test/nest_test.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/nest_test.cpp b/test/nest_test.cpp index 6560bf8..65ca4f3 100644 --- a/test/nest_test.cpp +++ b/test/nest_test.cpp @@ -550,10 +550,6 @@ void test_get_iterator() nest::const_iterator cfound = ch.get_iterator(p); BOOST_TEST(cfound != ch.end()); BOOST_TEST_EQ(*cfound, 42); - - nest::const_pointer bad = 0; - nest::iterator not_found = h.get_iterator(bad); - (void)not_found; } struct sum_functor