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

Skip to content

Rollup of 18 pull requests #40361

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 46 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
3aa6f18
add unstable book to the bookshelf
steveklabnik Feb 28, 2017
ae2c9d2
fix link
steveklabnik Mar 2, 2017
b55f1e5
Fix description of closure coercion feature
est31 Mar 4, 2017
5a644f4
remove nomicon
steveklabnik Mar 3, 2017
4369aee
import nomicon submodule
steveklabnik Mar 3, 2017
202d8da
rustbuild: expose LLVM_PARALLEL_LINK_JOBS
Mar 5, 2017
03b83a0
clarify docs for Args and ArgsOs
oconnor663 Mar 5, 2017
ff35b11
Introduce crt_static target option in config.toml
smaeul Feb 26, 2017
91fe8c5
Factor out helper for getting C runtime linkage
smaeul Feb 26, 2017
e6dbe3b
Factor out special casing of MSVC crt
smaeul Mar 5, 2017
b66c4ed
Only use pre/post_link_objects for static linking
smaeul Feb 26, 2017
3a14de5
Link libgcc_s over libunwind on dynamic musl
smaeul Feb 26, 2017
8edfb35
Support dynamic linking for musl-based targets
smaeul Feb 26, 2017
470b62f
C library usage is not conditional upon architecture
smaeul Feb 26, 2017
5eba141
Presence of libraries does not depend on architecture
smaeul Feb 26, 2017
706fc55
Infer a default musl_root for native builds
smaeul Feb 26, 2017
86bad49
Issue #39688 - Help people find String::as_bytes() for UTF-8 r? @stev…
jdhorwitz Mar 3, 2017
f121e61
Fix text formatting in README
mmatyas Mar 6, 2017
2e5b380
Remove extra space in test description (of a mod test)
malbarbo Mar 6, 2017
2bb2a29
Improve the style of the sidebar in rustdoc output
8000 wesleywiser Feb 16, 2017
acd8fe8
Fix a typo in the docs
oli-obk Mar 7, 2017
f283141
README formatting in configure/make section
joelgallant Mar 7, 2017
b5533d2
Update link to COMPILER_TESTS.md in CONTRIBUTING.md
crazymerlyn Mar 7, 2017
df61719
Added remove_from to vec.rs
madseagames Dec 3, 2016
65ac1e9
Add missing urls in some macros doc
GuillaumeGomez Mar 7, 2017
025bf95
Clarify handling of `src` in `ptr::write`
tbu- Mar 7, 2017
f3a2f90
Document why `str.to_{lower,upper}case` return `String`
tbu- Mar 7, 2017
e412af2
rustbuild: Assert directory creation succeeds
alexcrichton Mar 7, 2017
d9f633f
Rollup merge of #40113 - smaeul:native-musl, r=alexcrichton
frewsxcv Mar 8, 2017
0decbbf
Rollup merge of #40154 - steveklabnik:link-unstable-book, r=frewsxcv
frewsxcv Mar 8, 2017
86ee06b
Rollup merge of #40222 - steveklabnik:extract-nomicon, r=alexcrichton
frewsxcv Mar 8, 2017
3052932
Rollup merge of #40226 - jdhorwitz:master, r=frewsxcv
frewsxcv Mar 8, 2017
3ac1eaa
Rollup merge of #40258 - est31:master, r=nikomatsakis
frewsxcv Mar 8, 2017
1aa32bc
Rollup merge of #40265 - wesleywiser:rustdoc_style, r=GuillaumeGomez
frewsxcv Mar 8, 2017
95ab30f
Rollup merge of #40277 - rkruppe:llvm-parallel-link-jobs, r=alexcrichton
frewsxcv Mar 8, 2017
206a9d4
Rollup merge of #40283 - oconnor663:args_docs, r=alexcrichton
frewsxcv Mar 8, 2017
17ce186
Rollup merge of #40292 - mmatyas:readme_fix, r=alexcrichton
frewsxcv Mar 8, 2017
9895294
Rollup merge of #40293 - malbarbo:rustdoctest, r=alexcrichton
frewsxcv Mar 8, 2017
3a3cbc6
Rollup merge of #40316 - oli-obk:patch-4, r=GuillaumeGomez
frewsxcv Mar 8, 2017
a75fe45
Rollup merge of #40321 - joelgallant:joelgallant-readme, r=aturon
frewsxcv Mar 8, 2017
74229a8
Rollup merge of #40325 - eddyb:pr38143, r=alexcrichton
frewsxcv Mar 8, 2017
ad9968b
Rollup merge of #40326 - crazymerlyn:fix-doc-link, r=alexcrichton
frewsxcv Mar 8, 2017
1c47e16
Rollup merge of #40327 - GuillaumeGomez:macros-urls, r=frewsxcv
frewsxcv Mar 8, 2017
c4cb6bf
Rollup merge of #40333 - tbu-:pr_doc_ptr_write, r=alexcrichton
frewsxcv Mar 8, 2017
7c8b337
Rollup merge of #40335 - tbu-:pr_doc_str_to_somecase, r=steveklabnik
frewsxcv Mar 8, 2017
bfcee7b
Rollup merge of #40337 - alexcrichton:racy-dirs, r=brson
frewsxcv Mar 8, 2017
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 src/librustc/ty/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1286,7 +1286,7 @@ pub struct Destructor {
/// invoked even when there are lifetimes in the type-structure of
/// `adt` that do not strictly outlive the adt value itself.
/// (This allows programs to make cyclic structures without
/// resorting to unasfe means; see RFCs 769 and 1238).
/// resorting to unsafe means; see RFCs 769 and 1238).
pub is_dtorck: bool,
}

Expand Down
0