Skip to content
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

Merged
merged 1 commit into from
Nov 3, 2015

Conversation

mystor
Copy link
Contributor

@mystor mystor commented Nov 3, 2015

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.

@rust-highfive
Copy link
Contributor

r? @aturon

(rust_highfive has picked a reviewer for you, use r? to override)

@bluss bluss assigned bluss and unassigned aturon Nov 3, 2015
@bluss
Copy link
Member

bluss commented Nov 3, 2015

Thanks!

@bors r+

@bors
Copy link
Collaborator

bors commented Nov 3, 2015

📌 Commit 26db717 has been approved by bluss

(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}}
Copy link
Member

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.

Copy link
Contributor Author

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 :)

Copy link
Member

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.

bors added a commit that referenced this pull request Nov 3, 2015
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.
@bors
Copy link
Collaborator

bors commented Nov 3, 2015

⌛ Testing commit 26db717 with merge 708e319...

@bors bors merged commit 26db717 into rust-lang:master Nov 3, 2015
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants