diff options
| author | Aaron Turon <aturon@mozilla.com> | 2014-11-14 13:55:57 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-11-20 17:19:13 -0800 |
| commit | 3ee916e50bd86768cb2a9141f9b2c52d2601b412 (patch) | |
| tree | db9ca36ba7fa33d823dbaec8f8fd53c4be6e8a2b /src/libstd/lib.rs | |
| parent | ad022b1a1bcdb8d2e6d1f200f5824f16de2c2193 (diff) | |
| download | rust-3ee916e50bd86768cb2a9141f9b2c52d2601b412.tar.gz rust-3ee916e50bd86768cb2a9141f9b2c52d2601b412.zip | |
Remove libnative
With runtime removal complete, there's nothing left of libnative. This commit removes it. Fixes #18687 [breaking-change]
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 7f2a4c7e365..70b30997e18 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -248,9 +248,7 @@ pub mod fmt; #[path = "sys/common/mod.rs"] mod sys_common; -// FIXME #7809: This shouldn't be pub, and it should be reexported under 'unstable' -// but name resolution doesn't work without it being pub. -pub mod rt; +mod rt; mod failure; // A curious inner-module that's not exported that contains the binding |
