From 84406d98e4fd8032b544eba7b5f9d3ed78e67e6c Mon Sep 17 00:00:00 2001 From: Bhargav Srinivasan Date: Tue, 22 Sep 2020 05:12:21 -0700 Subject: [PATCH] removing redundant assert --- lib/std/priority_queue.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/std/priority_queue.zig b/lib/std/priority_queue.zig index 2769e7aa02..f5ff4800e8 100644 --- a/lib/std/priority_queue.zig +++ b/lib/std/priority_queue.zig @@ -196,7 +196,6 @@ pub fn PriorityQueue(comptime T: type) type { pub fn update(self: *Self, elem: T, new_elem: T) !void { var update_index: usize = std.mem.indexOfScalar(T, self.items, elem) orelse return error.ElementNotFound; - assert (update_index >= 0 and update_index < self.items.len); const old_elem: T = self.items[update_index]; self.items[update_index] = new_elem; if (self.compareFn(new_elem, old_elem)) {