diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-01-06 16:48:51 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-01-07 23:51:38 -0800 |
| commit | 7e0443d6c4e683105f20de85dc4591cc5cf2518d (patch) | |
| tree | 631c8a852acedabef00ba3e371e785e90a581c56 /src/libstd/rt/logging.rs | |
| parent | 5350ee740e66a73161eb4cdf5b95d55fe570fc26 (diff) | |
| download | rust-7e0443d6c4e683105f20de85dc4591cc5cf2518d.tar.gz rust-7e0443d6c4e683105f20de85dc4591cc5cf2518d.zip | |
std: Fill in all missing imports
Fallout from the previous commits
Diffstat (limited to 'src/libstd/rt/logging.rs')
| -rw-r--r-- | src/libstd/rt/logging.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstd/rt/logging.rs b/src/libstd/rt/logging.rs index 586d26a24e3..2004dac0c7c 100644 --- a/src/libstd/rt/logging.rs +++ b/src/libstd/rt/logging.rs @@ -8,12 +8,15 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. +use container::Container; +use fmt; use from_str::from_str; +use iter::Iterator; use libc::exit; use option::{Some, None, Option}; use rt::crate_map::{ModEntry, CrateMap, iter_crate_map, get_crate_map}; use str::StrSlice; -use vec::{ImmutableVector, MutableTotalOrdVector}; +use vec::{ImmutableVector, MutableTotalOrdVector, OwnedVector}; #[cfg(test)] use cast::transmute; struct LogDirective { |
