Skip to content

Rollup of 7 pull requests #67426

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

Closed
wants to merge 23 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3980342
Use structured suggestion for disambiguating method calls
estebank Dec 4, 2019
8c4f1d5
review comments
estebank Dec 12, 2019
6ad0b55
Remove now-redundant range check on u128 -> f32 casts
Dec 15, 2019
c6321a4
Add benchmarks for string::insert(_str)
llogiq Dec 13, 2019
c1241bf
add debuginfo in generator_interior
csmoe Oct 16, 2019
ff4f6a1
record previous unresolve span for generator error reporting
csmoe Oct 21, 2019
17aa0cb
Remove a const-if-hack in RawVec
mark-i-m Nov 25, 2019
3ec3fca
remove a bit more hackery
mark-i-m Nov 25, 2019
baaf864
use usize::MAX instead of !0
mark-i-m Nov 26, 2019
951f041
fix import
mark-i-m Nov 26, 2019
2535435
add fixme
mark-i-m Nov 26, 2019
7d26811
no need to bootstrap
mark-i-m Dec 18, 2019
35af4e2
Normalize identifiers in librustc_parse.
crlf0710 Nov 23, 2019
5a75934
Add a test and bless existing test case.
crlf0710 Nov 23, 2019
49f3bc9
Add unicode-normalization to whitelist.
crlf0710 Dec 19, 2019
bfc02bd
Fix documentation typo
LeSeulArtichaut Dec 19, 2019
02206dc
Rollup merge of #66670 - crlf0710:normalize_ident, r=estebank
Centril Dec 19, 2019
208f353
Rollup merge of #66755 - mark-i-m:const-vec-new, r=ecstatic-morse
Centril Dec 19, 2019
8c15656
Rollup merge of #67127 - estebank:disambiguate-suggestion, r=varkor
Centril Dec 19, 2019
4254d29
Rollup merge of #67281 - llogiq:nonoverlapping-insert, r=alexcrichton
Centril Dec 19, 2019
3d21aa6
Rollup merge of #67328 - rkruppe:simplify-u128-f32-cast, r=matthewjasper
Centril Dec 19, 2019
c014c45
Rollup merge of #67392 - csmoe:async-typeinfo, r=estebank
Centril Dec 19, 2019
4ff4d6c
Rollup merge of #67421 - LeSeulArtichaut:patch-1, r=Centril
Centril Dec 19, 2019
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
add fixme
  • Loading branch information
mark-i-m committed Dec 19, 2019
commit 253543560aa10f90607b23b5b12be3cfe28fdb1b
1 change: 1 addition & 0 deletions src/liballoc/raw_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ impl<T, A: Alloc> RawVec<T, A> {
/// Like `new`, but parameterized over the choice of allocator for
/// the returned `RawVec`.
pub const fn new_in(a: A) -> Self {
// FIXME(mark-i-m): remove bootstrapping cfgs these after a cycle
let cap = {
#[cfg(not(bootstrap))]
{ if mem::size_of::<T>() == 0 { core::usize::MAX } else { 0 } }
Expand Down