-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Correct incorrect assertion in VecDeque::wrap_copy #29545
Conversation
r? @aturon (rust_highfive has picked a reviewer for you, use r? to override) |
Thanks! @bors r+ |
📌 Commit 26db717 has been approved by |
(if src <= dst { dst - src } else { src - dst }) + len <= self.cap(), | ||
"dst={} src={} len={} cap={}", dst, src, len, self.cap()); | ||
#[allow(dead_code)] | ||
fn diff(a: usize, b: usize) -> usize {if a <= b {b - a} else {a - b}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure its worth very much making this function instead of keeping it inlined.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree. Not a big fan of this code, but it works, which is better than the old code :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's called twice, so I think it's ok.
I think this should fix the test failures in debug mode from #29492 The assertion was written incorrectly, and I don't like the way the new assertion is written, but I _think_ it does the right thing now.
I think this should fix the test failures in debug mode from #29492
The assertion was written incorrectly, and I don't like the way the new assertion is written, but I think it does the right thing now.