commit 84406d98e4fd8032b544eba7b5f9d3ed78e67e6c (tree)
parent 778bb4b324f4764386f55781d70e8167f1dd1abc
Author: Bhargav Srinivasan <bsvasan92@icloud.com>
Date: Tue, 22 Sep 2020 05:12:21 -0700
removing redundant assert
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git 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)) {