diff options
| author | bors <bors@rust-lang.org> | 2013-03-14 20:06:44 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-03-14 20:06:44 -0700 |
| commit | 73b253dc800efe9fa73edfed4663d175b667129b (patch) | |
| tree | 1950ae29d66ef939178be394b8d10e728f3711b3 | |
| parent | c3fe0b97de67e0449aa20cd8ef683fb594bb3ffd (diff) | |
| parent | e4f5866c10cd5b45a4f95590f0f2fe0aff54c12e (diff) | |
| download | rust-73b253dc800efe9fa73edfed4663d175b667129b.tar.gz rust-73b253dc800efe9fa73edfed4663d175b667129b.zip | |
auto merge of #5371 : thestinger/rust/hidden, r=pcwalton
| -rw-r--r-- | src/libcore/core.rc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc index 31d553f5a8c..955c1f46d76 100644 --- a/src/libcore/core.rc +++ b/src/libcore/core.rc @@ -56,6 +56,7 @@ Implicitly, all crates behave as if they included the following prologue: // On Linux, link to the runtime with -lrt. #[cfg(target_os = "linux")] +#[doc(hidden)] pub mod linkhack { #[link_args="-lrustrt -lrt"] #[link_args = "-lpthread"] @@ -252,7 +253,7 @@ pub mod rt; // A curious inner-module that's not exported that contains the binding // 'core' so that macro-expanded references to core::error and such // can be resolved within libcore. -#[doc(hidden)] // FIXME #3538 +#[doc(hidden)] pub mod core { #[cfg(stage0)] pub const error : u32 = 1_u32; |
