Skip to content

Commit

Permalink
core: Move unstable to unstable/mod.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed May 13, 2013
1 parent 1b88336 commit 4f44624
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
1 change: 1 addition & 0 deletions src/libcore/core.rc
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,7 @@ pub mod util;
/* Unsupported interfaces */

// Private APIs
#[path = "unstable/mod.rs"]
pub mod unstable;

/* For internal use, not exported */
Expand Down
9 changes: 0 additions & 9 deletions src/libcore/unstable.rs → src/libcore/unstable/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,14 @@ use task;
use task::atomically;
use self::finally::Finally;

#[path = "unstable/at_exit.rs"]
pub mod at_exit;
#[path = "unstable/global.rs"]
pub mod global;
#[path = "unstable/finally.rs"]
pub mod finally;
#[path = "unstable/weak_task.rs"]
pub mod weak_task;
#[path = "unstable/exchange_alloc.rs"]
pub mod exchange_alloc;
#[path = "unstable/intrinsics.rs"]
pub mod intrinsics;
#[path = "unstable/simd.rs"]
pub mod simd;
#[path = "unstable/extfmt.rs"]
pub mod extfmt;
#[path = "unstable/lang.rs"]
#[cfg(not(test))]
pub mod lang;

Expand Down

0 comments on commit 4f44624

Please sign in to comment.