Skip to content
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

Register new snapshots #14206

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 0 additions & 3 deletions src/libcore/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,6 @@ pub mod slice;
pub mod str;
pub mod tuple;

#[cfg(stage0, not(test))]
pub mod owned;

// FIXME: this module should not exist. Once owned allocations are no longer a
// language type, this module can move outside to the owned allocation
// crate.
Expand Down
101 changes: 0 additions & 101 deletions src/libcore/owned.rs

This file was deleted.

7 changes: 2 additions & 5 deletions src/libstd/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,13 @@ extern crate core;
#[cfg(test)] pub use ops = realstd::ops;
#[cfg(test)] pub use cmp = realstd::cmp;
#[cfg(test)] pub use ty = realstd::ty;
#[cfg(not(stage0), test)] pub use owned = realstd::owned;
#[cfg(test)] pub use owned = realstd::owned;

#[cfg(not(test))] pub use cmp = core::cmp;
#[cfg(not(test))] pub use kinds = core::kinds;
#[cfg(not(test))] pub use ops = core::ops;
#[cfg(not(test))] pub use ty = core::ty;

#[cfg(stage0, test)] pub use owned = realstd::owned;
#[cfg(stage0, not(test))] pub use owned = core::owned;

pub use core::any;
pub use core::bool;
pub use core::cell;
Expand Down Expand Up @@ -209,7 +206,7 @@ pub mod ascii;

pub mod rc;
pub mod gc;
#[cfg(not(stage0), not(test))]
#[cfg(not(test))]
pub mod owned;

/* Common traits */
Expand Down
8 changes: 8 additions & 0 deletions src/snapshots.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
S 2014-05-15 6a2b3d1
freebsd-x86_64 afc98b59cb819025fecdb9d145ca4463f857a477
linux-i386 d6f7a404412ea34db3d19814ca21fe6fa662b02f
linux-x86_64 3dfb54406a7ea75565a7ea3071daad885cb91775
macos-i386 bebb937551d601ad908c9e4eaa196cc7a977c503
macos-x86_64 08346ed401ad2891c7d2ba0aac0960f6e77bb78b
winnt-i386 ad8e5b8292a00f60f1f7dc2e35bd18abeb5b858d

S 2014-05-11 72fc4a5
freebsd-x86_64 82db6355b0b7c8023c8845a74e2f224da2831b50
linux-i386 91901299d5f86f5b67377d940073908a1f0e4e82
Expand Down