diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-06-18 01:13:53 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-06-18 01:13:53 -0700 |
| commit | e710653a3b2f0c9f7555c0a4fc01d083c7a4ce91 (patch) | |
| tree | 8e71a7a2190be165d83db5db546edf6974b5fda8 /src/libstd | |
| parent | 72c08a4f8f52da100d1c3e7ffe06e9ad4f3a0e28 (diff) | |
| download | rust-e710653a3b2f0c9f7555c0a4fc01d083c7a4ce91.tar.gz rust-e710653a3b2f0c9f7555c0a4fc01d083c7a4ce91.zip | |
std: Remove dual export of `Show`
Closes #14996
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/fmt.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/fmt.rs b/src/libstd/fmt.rs index af76defc8f6..7236b527831 100644 --- a/src/libstd/fmt.rs +++ b/src/libstd/fmt.rs @@ -420,7 +420,7 @@ use str; use string; use slice::Vector; -pub use core::fmt::{Formatter, Result, FormatWriter, Show, rt}; +pub use core::fmt::{Formatter, Result, FormatWriter, rt}; pub use core::fmt::{Show, Bool, Char, Signed, Unsigned, Octal, Binary}; pub use core::fmt::{LowerHex, UpperHex, String, Pointer}; pub use core::fmt::{Float, LowerExp, UpperExp}; |
