8000 Rollup of 9 pull requests by Centril · Pull Request #65449 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Rollup of 9 pull requests #65449

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
48fff6f
don't assume we can *always* find a return type hint in async fn
nikomatsakis Oct 9, 2019
061b906
Return `false` from `needs_drop` for all zero-sized arrays
ecstatic-morse Oct 13, 2019
8fd16ba
Remove special case for zero-sized arrays from indirectly mut locals
ecstatic-morse Oct 13, 2019
c08a871
Add regression test for #65348
ecstatic-morse Oct 13, 2019
c50664d
Prefer statx on linux if available
oxalica Oct 4, 2019
55cddb8
Fix missing guard
oxalica Oct 10, 2019
f81b154
Add troubleshooting section to PGO chapter in rustc book.
michaelwoerister Oct 14, 2019
e3b7f3d
Fix cfgs for current libc
oxalica Oct 13, 2019
7528234
Add regression test for issue #64153.
michaelwoerister Oct 14, 2019
af05b23
Fix issue #64153 by checking for .rcgu.o suffix when trying to identi…
michaelwoerister Oct 15, 2019
53187c5
Slides path lifetime to the lifetime resolver
Phosphorus15 Oct 11, 2019
1fb8cfb
Organize `never_type` tests
Centril Oct 15, 2019
dee53d7
Fix suggestion to constrain trait for method to be found
estebank Oct 9, 2019
fa3a4ae
Implement AsRef<[T]> for List<T>
spastorino Oct 15, 2019
07ccdcf
Rollup merge of #65094 - oxalica:linux-statx, r=alexcrichton
Centril Oct 15, 2019
2e686ef
Rollup merge of #65235 - nikomatsakis:issue-65159-async-fn-return-ice…
Centril Oct 15, 2019
b2416f4
Rollup merge of #65242 - estebank:contrain-trait-sugg, r=varkor
Centril Oct 15, 2019
077a26a
Rollup merge of #65307 - Phosphorus15:master, r=varkor
Centril Oct 15, 2019
39e8aa1
Rollup merge of #65389 - ecstatic-morse:zero-sized-array-no-drop, r=e…
Centril Oct 15, 2019
d4ba3e2
Rollup merge of #65402 - michaelwoerister:pgo-troubleshooting-docs, r…
Centril Oct 15, 2019
d03b09f
Rollup merge of #65435 - michaelwoerister:fix-issue-64153, r=alexcric…
Centril Oct 15, 2019
4ba1658
Rollup merge of #65438 - Centril:almost, r=varkor
Centril Oct 15, 2019
9ce03a6
Rollup merge of #65444 - spastorino:as-ref-for-list, r=Mark-Simulacrum
Centril Oct 15, 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
Fix missing guard
  • Loading branch information
oxalica committed Oct 14, 2019
commit 55cddb879a6adf02ee00edd26ab2fe1b7213bc08
1 change: 1 addition & 0 deletions src/libstd/sys/unix/fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ pub struct FileAttr {
statx_extra_fields: Option<StatxExtraFields>,
}

#[cfg(target_os = "linux")]
#[derive(Clone)]
struct StatxExtraFields {
// This is needed to check if btime is supported by the filesystem.
Expand Down
0