diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-01-07 17:18:59 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-07 17:18:59 -0800 |
| commit | a204dc56c97f35632575b1baa008f2e069b1bed9 (patch) | |
| tree | b55c302f46d0adb457d3ce2f250bc0b1209d0996 /src/liballoc/boxed.rs | |
| parent | a6bf7676a545f72cef2e3d042b6d0409f295693a (diff) | |
| parent | 9851b4fbbf327bb1baab3182ce92970d4db22c6c (diff) | |
| download | rust-a204dc56c97f35632575b1baa008f2e069b1bed9.tar.gz rust-a204dc56c97f35632575b1baa008f2e069b1bed9.zip | |
rollup merge of #20722: alexcrichton/audit-show
Conflicts: src/libcollections/vec.rs src/libcore/fmt/mod.rs src/librustdoc/html/format.rs
Diffstat (limited to 'src/liballoc/boxed.rs')
| -rw-r--r-- | src/liballoc/boxed.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index 03198caaac4..b42337a8982 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -157,6 +157,7 @@ impl<T: ?Sized + fmt::Show> fmt::Show for Box<T> { } } +#[stable] impl<T: ?Sized + fmt::String> fmt::String for Box<T> { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { fmt::String::fmt(&**self, f) |
