Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 11 pull requests #80064

Closed
wants to merge 33 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
94d73d4
Refactor `parse_prefix` on Windows
CDirkx Nov 3, 2020
ea14607
make MIR graphviz generation use gsgdt
vn-ki Oct 26, 2020
5b049e1
write to a String instead to reduce churn
vn-ki Oct 26, 2020
a4e94ec
update gsgdt
vn-ki Oct 27, 2020
86a7831
formatting
vn-ki Nov 9, 2020
51ecb96
add different color for cleanup nodes in dark mode
vn-ki Nov 12, 2020
6fe31e7
fix clippy test
vn-ki Dec 5, 2020
7cb74ed
Remove memoization leftovers
Dec 8, 2020
de1cd4b
Extra assertions in eval_body_using_ecx to disallow queries for
Dec 9, 2020
b6f7eef
Remove unnecessary check and fix local_def_id parameter
Dec 10, 2020
a03feaa
add missing constraints
Dec 11, 2020
ed80815
Move binder for dyn to each list item
jackh726 Dec 11, 2020
0f30b7d
fix panic if converting ZST Vec to VecDeque
Stupremee Dec 13, 2020
d75618e
replace assert! with assert_eq!
Stupremee Dec 13, 2020
94fd1d3
BTreeMap: more expressive local variables in merge
ssomers Nov 23, 2020
09d528e
fix typo
Stupremee Dec 13, 2020
6c7835e
BTreeSet: simplify implementation of pop_first/pop_last
ssomers Nov 20, 2020
357565d
expand-yaml-anchors: Make the output directory separator-insensitive
JohnTitor Dec 14, 2020
01c2520
Add explanation for skip_binder in relate
jackh726 Dec 14, 2020
777ca99
Optimization for bool's PartialOrd impl
ChayimFriedman2 Dec 14, 2020
a9ff4bd
Always run intrinsics lowering pass
tmiasko Dec 15, 2020
4652a13
write_slice(_cloned)
beepster4096 Dec 1, 2020
81e0fd4
Rollup merge of #78399 - vn-ki:gsgdt-graphviz, r=oli-obk
Dylan-DPC Dec 15, 2020
12156e7
Rollup merge of #78833 - CDirkx:parse_prefix, r=dtolnay
Dylan-DPC Dec 15, 2020
3ce1f5c
Rollup merge of #79607 - DrMeepster:maybe_uninit_write_slice, r=m-ou-se
Dylan-DPC Dec 15, 2020
0a2aeac
Rollup merge of #79840 - dvtkrlbs:issue-79667, r=oli-obk
Dylan-DPC Dec 15, 2020
6a19c06
Rollup merge of #79945 - jackh726:existential_trait_ref, r=nikomatsakis
Dylan-DPC Dec 15, 2020
fe2af20
Rollup merge of #80003 - Stupremee:fix-zst-vecdeque-conversion-panic,…
Dylan-DPC Dec 15, 2020
68b75db
Rollup merge of #80006 - ssomers:btree_cleanup_6, r=Mark-Simulacrum
Dylan-DPC Dec 15, 2020
1068f94
Rollup merge of #80022 - ssomers:btree_cleanup_8, r=Mark-Simulacrum
Dylan-DPC Dec 15, 2020
a26389f
Rollup merge of #80026 - JohnTitor:separator-insensitive, r=Mark-Simu…
Dylan-DPC Dec 15, 2020
df630a9
Rollup merge of #80035 - ChayimFriedman2:patch-1, r=nagisa
Dylan-DPC Dec 15, 2020
f255490
Rollup merge of #80040 - tmiasko:always-lower-intrinsics, r=Dylan-DPC
Dylan-DPC Dec 15, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
replace assert! with assert_eq!
  • Loading branch information
Stupremee committed Dec 13, 2020
commit d75618e7a2517d4b39c4e50ff1644f595a86e92b
2 changes: 1 addition & 1 deletion library/alloc/tests/vec_deque.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1733,5 +1733,5 @@ fn test_zero_sized_push() {
fn test_from_zero_sized_vec() {
let v = vec![(); 100];
let queue = VecDeque::from(v);
assert!(queue.len(), 100);
assert_eq!(queue.len(), 100);
}