Skip to content

Rollup of 13 pull requests #89386

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 27 commits into from
Sep 30, 2021
Merged
Changes from 2 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
47c5056
Fix highlighting for union keyword
GuillaumeGomez Jul 24, 2021
ee38116
Add test for union keyword highlighting
GuillaumeGomez Jul 24, 2021
18fb97e
Remove ignore-tidy-undocumented-unsafe from core::slice::sort
mdsn Aug 25, 2021
b226d17
Fix generics where bounds order
GuillaumeGomez Sep 19, 2021
592d089
:arrow_up: rust-analyzer
lnicola Sep 27, 2021
12c3f50
PassWrapper: handle function rename from upstream D36850
durin42 Sep 27, 2021
cd0873b
Add unit assignment to MIR for `asm!()`
FabianWolff Sep 27, 2021
dd0b5f4
Clarify that `CString::from_vec_unchecked` appends 0 byte.
et342 Sep 28, 2021
830ecbd
Optimize is_sorted for Range and RangeInclusive
mbrubeck Sep 28, 2021
d2613fb
Improve help for recursion limit errors
rossmacarthur Sep 28, 2021
a0f4e78
Remove lazy_static dependency
GuillaumeGomez Sep 29, 2021
bdd3471
Remove Never variant from clean::Type enum
GuillaumeGomez Sep 27, 2021
80b4718
Update cargo
ehuss Sep 29, 2021
762f81d
Update books
ehuss Sep 29, 2021
42ea15b
Rollup merge of #87428 - GuillaumeGomez:union-highlighting, r=notriddle
ehuss Sep 30, 2021
e24f522
Rollup merge of #88412 - mdsn:slice-sort-safety, r=dtolnay
ehuss Sep 30, 2021
7c23ff2
Rollup merge of #89098 - GuillaumeGomez:where-bounds-order, r=camelid
ehuss Sep 30, 2021
8087147
Rollup merge of #89232 - rossmacarthur:fix-76424, r=wesleywiser
ehuss Sep 30, 2021
9050c54
Rollup merge of #89294 - lnicola:rust-analyzer-2021-09-27, r=lnicola
ehuss Sep 30, 2021
8dfe522
Rollup merge of #89297 - GuillaumeGomez:remove-never-from-type-enum, …
ehuss Sep 30, 2021
c5f8675
Rollup merge of #89311 - FabianWolff:issue-89305, r=oli-obk
ehuss Sep 30, 2021
403e221
Rollup merge of #89313 - durin42:llvm-14-thinLTOResolvePrevailingInMo…
ehuss Sep 30, 2021
e392f5d
Rollup merge of #89315 - et342:cstr_from_vec_unchecked_doc, r=yaahc
ehuss Sep 30, 2021
8f9f3aa
Rollup merge of #89335 - mbrubeck:range-is-sorted, r=cuviper
ehuss Sep 30, 2021
9a77b21
Rollup merge of #89366 - GuillaumeGomez:remove-lazy-static, r=jyn514
ehuss Sep 30, 2021
4bb4789
Rollup merge of #89377 - ehuss:update-cargo, r=ehuss
ehuss Sep 30, 2021
20c9530
Rollup merge of #89378 - ehuss:update-books, r=ehuss
ehuss Sep 30, 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: 2 additions & 0 deletions library/std/src/ffi/c_str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,8 @@ impl CString {
/// Creates a C-compatible string by consuming a byte vector,
/// without checking for interior 0 bytes.
///
/// Trailing 0 byte will be appended by this function.
///
/// This method is equivalent to [`CString::new`] except that no runtime
/// assertion is made that `v` contains no 0 bytes, and it requires an
/// actual byte vector, not anything that can be converted to one with Into.
Expand Down