Skip to content

Rollup of 9 pull requests #58470

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 31 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e6d5f25
Fix #57730
Zoxc Jan 29, 2019
9d2a0b9
add regression test for #57979
nikomatsakis Feb 1, 2019
0d28a24
Remove code for updating copyright years in generate-deriving-span-tests
LunaBorowska Feb 8, 2019
df420aa
Remove initial newline from automatically generated span tests
LunaBorowska Feb 8, 2019
8f6d05b
Don't default on std crate when manipulating browser history
GuillaumeGomez Feb 8, 2019
719be24
fix Box::into_unique effecitvely transmuting to a raw ptr
RalfJung Feb 13, 2019
26ade1c
mark failures expected due to panics
RalfJung Feb 9, 2019
7f5dc49
review or fix miri failures in iter, slice, cell, time
RalfJung Feb 9, 2019
72be9a6
review or fix remaining miri failures in libcore
RalfJung Feb 9, 2019
e24af6c
the formatting issue got fixed
RalfJung Feb 13, 2019
b17ca01
review failures in binary_heap, str, vec_deque
RalfJung Feb 13, 2019
4c1a1c3
review failures in btree, string
RalfJung Feb 13, 2019
767dadf
review failures in heap, slice, vec
RalfJung Feb 13, 2019
c154bf7
miri: test with slightly larger BTrees
RalfJung Feb 13, 2019
a301655
Use posix_spawn_file_actions_addchdir_np when possible
cuviper Feb 13, 2019
283ffcf
Check the self-type of inherent associated constants
matthewjasper Feb 11, 2019
f565efd
mask `compiler_builtins` docs
euclio Feb 14, 2019
2c339ae
Add specific error for unstable const fn features
varkor Feb 5, 2019
feb3408
Update const fn tests
varkor Feb 5, 2019
519783a
Fix documentation typo
varkor Feb 5, 2019
cce2c89
add .stderr file
nikomatsakis Feb 14, 2019
8ca4406
Add updated NLL tests
varkor Feb 14, 2019
b9efe60
Rollup merge of #57981 - Zoxc:fix-57979, r=nikomatsakis
Centril Feb 14, 2019
634022c
Rollup merge of #58196 - varkor:const-fn-feature-gate-error, r=oli-obk
Centril Feb 14, 2019
2f5d8bc
Rollup merge of #58293 - xfix:patch-16, r=Mark-Simulacrum
Centril Feb 14, 2019
a62a203
Rollup merge of #58306 - GuillaumeGomez:crate-browser-history, r=Quie…
Centril Feb 14, 2019
983899b
Rollup merge of #58353 - matthewjasper:typeck-pattern-constants, r=ar…
Centril Feb 14, 2019
cef3d81
Rollup merge of #58429 - RalfJung:box, r=TimNN
Centril Feb 14, 2019
5cf28dd
Rollup merge of #58433 - RalfJung:miri-mark-tests, r=TimNN
Centril Feb 14, 2019
c88130d
Rollup merge of #58438 - cuviper:posix_spawn_file_actions_addchdir_np…
Centril Feb 14, 2019
2439466
Rollup merge of #58448 - euclio:missing-summaries, r=QuietMisdreavus
Centril Feb 14, 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
7 changes: 6 additions & 1 deletion src/librustdoc/clean/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,12 @@ impl<'a, 'tcx, 'rcx> Clean<Crate> for visit_ast::RustdocVisitor<'a, 'tcx, 'rcx>
match module.inner {
ModuleItem(ref module) => {
for it in &module.items {
if it.is_extern_crate() && it.attrs.has_doc_flag("masked") {
// `compiler_builtins` should be masked too, but we can't apply
// `#[doc(masked)]` to the injected `extern crate` because it's unstable.
if it.is_extern_crate()
&& (it.attrs.has_doc_flag("masked")
|| self.cx.tcx.is_compiler_builtins(it.def_id.krate))
{
masked_crates.insert(it.def_id.krate);
}
}
Expand Down