From 6e35e2d963f5267abb71a72f5995009dec704ecb Mon Sep 17 00:00:00 2001 From: Lydia Duncan Date: Fri, 7 Feb 2025 11:35:16 -0800 Subject: [PATCH] Remove stray unused variable from Set iterator Paul pointed this out, it was a consequence of all the code evolution that branch took. ---- Signed-off-by: Lydia Duncan --- modules/standard/Set.chpl | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/standard/Set.chpl b/modules/standard/Set.chpl index 7d96d762f01b..f1c542d7d7ee 100644 --- a/modules/standard/Set.chpl +++ b/modules/standard/Set.chpl @@ -563,7 +563,6 @@ module Set { @chpldoc.nodoc iter const these(param tag) where tag == iterKind.leader { - var space = 0..#_htb.tableSize; for followThis in _htb._evenSlots(tag) { yield followThis; }