-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 9 pull requests #59165
Rollup of 9 pull requests #59165
Commits on Mar 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 7e8758b - Browse repository at this point
Copy the full SHA 7e8758bView commit details
Commits on Mar 9, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 967e7f4 - Browse repository at this point
Copy the full SHA 967e7f4View commit details
Commits on Mar 10, 2019
-
Configuration menu - View commit details
-
Copy full SHA for d320b4a - Browse repository at this point
Copy the full SHA d320b4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 18d6c6e - Browse repository at this point
Copy the full SHA 18d6c6eView commit details -
syntax_ext: Validate
#[proc_macro_derive]
input betterTweak some error wording
Configuration menu - View commit details
-
Copy full SHA for f3b8809 - Browse repository at this point
Copy the full SHA f3b8809View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7d90794 - Browse repository at this point
Copy the full SHA 7d90794View commit details -
Configuration menu - View commit details
-
Copy full SHA for e81535c - Browse repository at this point
Copy the full SHA e81535cView commit details -
Refactor away
NestedMetaItemKind
Remove methods `Attribute::span` and `MetaItem::span` duplicating public fields
Configuration menu - View commit details
-
Copy full SHA for 98de9b7 - Browse repository at this point
Copy the full SHA 98de9b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for bfb200d - Browse repository at this point
Copy the full SHA bfb200dView commit details
Commits on Mar 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for e25df32 - Browse repository at this point
Copy the full SHA e25df32View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35c19c5 - Browse repository at this point
Copy the full SHA 35c19c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 980871a - Browse repository at this point
Copy the full SHA 980871aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 197efb0 - Browse repository at this point
Copy the full SHA 197efb0View commit details -
Configuration menu - View commit details
-
Copy full SHA for b9d12ed - Browse repository at this point
Copy the full SHA b9d12edView commit details
Commits on Mar 12, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 78b248d - Browse repository at this point
Copy the full SHA 78b248dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 795d307 - Browse repository at this point
Copy the full SHA 795d307View commit details -
Configuration menu - View commit details
-
Copy full SHA for f923476 - Browse repository at this point
Copy the full SHA f923476View commit details
Commits on Mar 13, 2019
-
Make std time tests more robust for platform differences
Jethro Beekman committedMar 13, 2019 Configuration menu - View commit details
-
Copy full SHA for adbd0a6 - Browse repository at this point
Copy the full SHA adbd0a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ea9b58 - Browse repository at this point
Copy the full SHA 0ea9b58View commit details -
Configuration menu - View commit details
-
Copy full SHA for 27abd52 - Browse repository at this point
Copy the full SHA 27abd52View commit details -
This commit adds a regression test for rust-lang#55809 which checks that a overflow does not occur when evaluating a requirement for async functions and `&mut` arguments in some specific circumstances.
Configuration menu - View commit details
-
Copy full SHA for 9d938f6 - Browse repository at this point
Copy the full SHA 9d938f6View commit details -
Fix generic argument lookup for Self
Rewrite the SelfCtor early and use the replacement Def when calculating the path_segs. Note that this also changes which def is seen by the code that computes user_self_ty and is_alias_variant_ctor; I don't see a immediate issue with that, but I'm not 100% clear on the implications. Fixes rust-lang#57924
Angelos Oikonomopoulos committedMar 13, 2019 Configuration menu - View commit details
-
Copy full SHA for 311025e - Browse repository at this point
Copy the full SHA 311025eView commit details -
Rollup merge of rust-lang#58789 - jordanrh1:update-compiler-builtins,…
… r=sanxiyn Update compiler_builtins to 0.1.7 to get windows/arm fix
Configuration menu - View commit details
-
Copy full SHA for 9758d97 - Browse repository at this point
Copy the full SHA 9758d97View commit details -
Rollup merge of rust-lang#58899 - petrochenkov:derval2, r=estebank
Do not accidentally treat multi-segment meta-items as single-segment Fixes rust-lang#55168 and many other regressions from rust-lang#50030 Basically, attributes like `#[any::prefix::foo]` were commonly interpreted as `#[foo]` due to `name()` successfully returning the last segment (this applies to nested things as well `#[attr(any::prefix::foo)]`).
Configuration menu - View commit details
-
Copy full SHA for 80049d9 - Browse repository at this point
Copy the full SHA 80049d9View commit details -
Rollup merge of rust-lang#59025 - aoikonomopoulos:issue-57924, r=varkor
Fix generic argument lookup for Self Rewrite the SelfCtor early and use the replacement Def when calculating the path_segs. Note that this also changes which def is seen by the code that computes user_self_ty and is_alias_variant_ctor; I don't see a immediate issue with that, but I'm not 100% clear on the implications. Fixes rust-lang#57924 r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for d263029 - Browse repository at this point
Copy the full SHA d263029View commit details -
Rollup merge of rust-lang#59047 - petrochenkov:modnodefid, r=Centril
resolve: Account for new importable entities Fixes the ICE encountered in rust-lang#58837 r? @Centril
Configuration menu - View commit details
-
Copy full SHA for f5138a9 - Browse repository at this point
Copy the full SHA f5138a9View commit details -
Rollup merge of rust-lang#59102 - newpavlov:duration_float, r=alexcri…
…chton Consistent naming for duration_float methods and additional f32 methods `duration_float` tracking issue: rust-lang#54361 New list of methods: - `as_secs_f64(&self) -> f64` - `as_secs_f32(&self) -> f32` - `from_secs_f64(secs: f64) -> Duration` - `from_secs_f32(secs: f32) -> Duration` - `mul_f64(self, rhs: f64) -> Duration` - `mul_f32(self, rhs: f32) -> Duration` - `div_f64(self, rhs: f64) -> Duration` - `div_f32(self, rhs: f64) -> Duration` - `div_duration_f64(self, rhs: Duration) -> f64` - `div_duration_f32(self, rhs: Duration) -> f32` With [`num_traits::Float`](https://docs.rs/num-traits/0.2.6/num_traits/float/trait.Float.html) we could've reduced number of methods by factor of two, but unfortunately it's not part of `std`.
Configuration menu - View commit details
-
Copy full SHA for 7787734 - Browse repository at this point
Copy the full SHA 7787734View commit details -
Rollup merge of rust-lang#59116 - estebank:comma-sugg, r=petrochenkov
Be more discerning on when to attempt suggesting a comma in a macro invocation Fix rust-lang#58796.
Configuration menu - View commit details
-
Copy full SHA for 4e992e0 - Browse repository at this point
Copy the full SHA 4e992e0View commit details -
Rollup merge of rust-lang#59146 - estebank:suggest-return-lt, r=varkor
Suggest return lifetime when there's only one named lifetime Fix rust-lang#29094.
Configuration menu - View commit details
-
Copy full SHA for 156fec0 - Browse repository at this point
Copy the full SHA 156fec0View commit details -
Rollup merge of rust-lang#59147 - jethrogb:jb/time-tests, r=sfackler
Make std time tests more robust for platform differences Previously, `time::tests::since_epoch` and `time::tests::system_time_math` would fail if the platform represents a SystemTime as unix epoch + `u64` nanoseconds. r? @sfackler
Configuration menu - View commit details
-
Copy full SHA for 353740d - Browse repository at this point
Copy the full SHA 353740dView commit details -
Rollup merge of rust-lang#59156 - davidtwco:issue-55809, r=nikomatsakis
[wg-async-await] Add regression test for rust-lang#55809. Fixes rust-lang#55809. This PR adds a regression test for rust-lang#55809 which checks that a overflow does not occur when evaluating a requirement for async functions and `&mut` arguments in some specific circumstances.
Configuration menu - View commit details
-
Copy full SHA for 3569af1 - Browse repository at this point
Copy the full SHA 3569af1View commit details