From a4622ae8dd7fe120fa4a237a0b90d67d1b476a02 Mon Sep 17 00:00:00 2001 From: David Spies Date: Sat, 24 May 2025 15:06:43 -0700 Subject: [PATCH] track_caller for zip_eq --- src/zip_eq_impl.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/zip_eq_impl.rs b/src/zip_eq_impl.rs index 3240a40eb..1f1119009 100644 --- a/src/zip_eq_impl.rs +++ b/src/zip_eq_impl.rs @@ -42,6 +42,7 @@ where { type Item = (I::Item, J::Item); + #[track_caller] fn next(&mut self) -> Option { match (self.a.next(), self.b.next()) { (None, None) => None,