diff options
| author | bors <bors@rust-lang.org> | 2013-05-14 00:46:48 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-05-14 00:46:48 -0700 |
| commit | 5a2f65fb5035627b8fb0b1ce0e927a492d55e3a4 (patch) | |
| tree | c694aca3e3b43832d48460e5fa4fdb583977bbcd /src/libcore/rt/stack.rs | |
| parent | 3aa1122ec25d15a2a73a295f8298ad9c38b09a10 (diff) | |
| parent | 66e1e517019c70450dcadeb0d876c686729215e3 (diff) | |
| download | rust-5a2f65fb5035627b8fb0b1ce0e927a492d55e3a4.tar.gz rust-5a2f65fb5035627b8fb0b1ce0e927a492d55e3a4.zip | |
auto merge of #6441 : alexcrichton/rust/issue-5531, r=luqmana
Also fix up all the fallout elsewhere throughout core. It's really nice being able to have the prelude. I'm not quite sure how resolution works with traits, but it seems to me like the public imports at the top-level of the core crate were leaking into the sub-crates, but that could also be working as intended. Regardless, things compile without the re-exports now.
Diffstat (limited to 'src/libcore/rt/stack.rs')
| -rw-r--r-- | src/libcore/rt/stack.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libcore/rt/stack.rs b/src/libcore/rt/stack.rs index 9eca3bda047..3a4e9307d3b 100644 --- a/src/libcore/rt/stack.rs +++ b/src/libcore/rt/stack.rs @@ -8,6 +8,8 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +use container::Container; +use ptr::Ptr; use vec; pub struct StackSegment { |
