-
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
Improve InternedString
usability
#40606
Conversation
r? @arielb1 (rust_highfive has picked a reviewer for you, use r? to override) |
☔ The latest upstream changes (presumably #40346) made this pull request unmergeable. Please resolve the merge conflicts. |
☔ The latest upstream changes (presumably #39628) made this pull request unmergeable. Please resolve the merge conflicts. |
r? @jseyfried |
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.
r=me modulo Travis failure
src/libcollections/linked_list.rs
Outdated
@@ -1376,7 +1376,7 @@ mod tests { | |||
thread::spawn(move || { | |||
check_links(&n); | |||
let a: &[_] = &[&1, &2, &3]; | |||
assert_eq!(a, &n.iter().collect::<Vec<_>>()[..]); | |||
assert_eq!(a, &n.iter().collect::<Vec<_>>()); |
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.
This is causing Travis to fail -- the second argument isn't getting autoderefed.
2c287ea
to
0d92734
Compare
☔ The latest upstream changes (presumably #40752) made this pull request unmergeable. Please resolve the merge conflicts. |
0d92734
to
f0c6182
Compare
travis likes this now |
☔ The latest upstream changes (presumably #40347) made this pull request unmergeable. Please resolve the merge conflicts. |
@oli-obk needs another rebase -- ping me when ready. |
f0c6182
to
eb447f4
Compare
ping @jseyfried just a conflict with the now removed liblog |
@bors r+ |
📌 Commit eb447f4 has been approved by |
⌛ Testing commit eb447f4 with merge 49de875... |
💔 Test failed - status-travis |
The compiler panicked while running some libstd tests on musl.
spurious? Or some pre-existing bug? I didn't touch any unsafe code. |
…seyfried Improve `InternedString` usability
❤️ |
No description provided.