Skip to content

Rollup of 10 pull requests #87509

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

Merged
merged 22 commits into from
Jul 27, 2021
Merged
Changes from 2 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8ea5362
Avoid ICE on type error recovery
estebank Jun 30, 2021
9792179
Add flag to configure `large_assignments` lint
tmiasko Jun 19, 2021
b07d175
Disable glibc tests on vxworks
NicholasBaron Jul 20, 2021
7a9dd00
VxWorks does provide sigemptyset and sigaddset
NicholasBaron Jul 20, 2021
3b9f811
get rid of NoMirFor error variant
RalfJung Jul 24, 2021
5407b42
macos current_exe using directly libc instead.
devnexen Jul 25, 2021
cccd4e2
fix typo: whenver -> whenever
midgleyc Jul 26, 2021
b21024f
Add long explanation for E0544.
midgleyc Jul 26, 2021
a397fdc
Remove ASCII fast path from rustc_lexer::{is_id_continue, is_id_start}
ibraheemdev Jul 27, 2021
de27d68
update unicode-xid dependency
ibraheemdev Jul 27, 2021
38663c0
Update cargo
ehuss Jul 27, 2021
07727c8
Update books
ehuss Jul 27, 2021
99a6474
Rollup merge of #86450 - tmiasko:move-size-limit, r=pnkfelix
JohnTitor Jul 27, 2021
4e1ebf2
Rollup merge of #86764 - estebank:issue-86756, r=pnkfelix
JohnTitor Jul 27, 2021
90f6d7b
Rollup merge of #87354 - Wind-River:2021_master, r=kennytm
JohnTitor Jul 27, 2021
d254394
Rollup merge of #87427 - RalfJung:no-mir-for, r=oli-obk
JohnTitor Jul 27, 2021
988f617
Rollup merge of #87446 - devnexen:macos_update, r=dtolnay
JohnTitor Jul 27, 2021
7282d71
Rollup merge of #87494 - midgleyc:comment-typos, r=joshtriplett
JohnTitor Jul 27, 2021
a981cff
Rollup merge of #87497 - midgleyc:long-E0544, r=GuillaumeGomez
JohnTitor Jul 27, 2021
54367b9
Rollup merge of #87499 - ibraheemdev:patch-6, r=dtolnay
JohnTitor Jul 27, 2021
bea8af9
Rollup merge of #87502 - ehuss:update-cargo, r=ehuss
JohnTitor Jul 27, 2021
af6c95f
Rollup merge of #87503 - ehuss:update-books, r=ehuss
JohnTitor Jul 27, 2021
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
2 changes: 1 addition & 1 deletion library/core/src/cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -583,7 +583,7 @@ impl<T> Cell<[T]> {
pub struct RefCell<T: ?Sized> {
borrow: Cell<BorrowFlag>,
// Stores the location of the earliest currently active borrow.
// This gets updated whenver we go from having zero borrows
// This gets updated whenever we go from having zero borrows
// to having a single borrow. When a borrow occurs, this gets included
// in the generated `BorrowError/`BorrowMutError`
#[cfg(feature = "debug_refcell")]
Expand Down