diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2015-11-16 21:01:06 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2015-11-18 01:24:22 +0300 |
| commit | 5cdfd8401b7f714be22fe7d86619e438d23b3962 (patch) | |
| tree | 4da95d7c8de6a318dfc4a021db196fae491ab07c /src/libcollections | |
| parent | 7e2ffc7090a70fe8c77a0e03fcec3cb1387141f2 (diff) | |
| download | rust-5cdfd8401b7f714be22fe7d86619e438d23b3962.tar.gz rust-5cdfd8401b7f714be22fe7d86619e438d23b3962.zip | |
Review fixes
Diffstat (limited to 'src/libcollections')
| -rw-r--r-- | src/libcollections/fmt.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libcollections/fmt.rs b/src/libcollections/fmt.rs index ebc2de4be7a..1450b8efb0f 100644 --- a/src/libcollections/fmt.rs +++ b/src/libcollections/fmt.rs @@ -475,8 +475,10 @@ #![stable(feature = "rust1", since = "1.0.0")] +#[unstable(feature = "fmt_internals", issue = "0")] +pub use core::fmt::rt; #[stable(feature = "rust1", since = "1.0.0")] -pub use core::fmt::{Formatter, Result, Write, rt}; +pub use core::fmt::{Formatter, Result, Write}; #[stable(feature = "rust1", since = "1.0.0")] pub use core::fmt::{Octal, Binary}; #[stable(feature = "rust1", since = "1.0.0")] |
