about summary refs log tree commit diff
path: root/src/libstd/unstable
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-08-10 00:28:47 -0700
committerAlex Crichton <alex@alexcrichton.com>2013-08-12 23:18:51 -0700
commitb820748ff5a2bc09b58dd7ac511e0f607d55f2e9 (patch)
tree7a34e364ae23968eadba2e7bc0ecae8e20b3fced /src/libstd/unstable
parent44675ac6aff91889f960655b0034964740415e8c (diff)
downloadrust-b820748ff5a2bc09b58dd7ac511e0f607d55f2e9.tar.gz
rust-b820748ff5a2bc09b58dd7ac511e0f607d55f2e9.zip
Implement formatting arguments for strings and integers
Closes #1651
Diffstat (limited to 'src/libstd/unstable')
-rw-r--r--src/libstd/unstable/raw.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/unstable/raw.rs b/src/libstd/unstable/raw.rs
index 0e074b53d6b..bdf84604fb3 100644
--- a/src/libstd/unstable/raw.rs
+++ b/src/libstd/unstable/raw.rs
@@ -56,6 +56,7 @@ impl<'self, T> Repr<Slice<T>> for &'self [T] {}
 impl<'self> Repr<Slice<u8>> for &'self str {}
 impl<T> Repr<*Box<T>> for @T {}
 impl<T> Repr<*Box<Vec<T>>> for @[T] {}
+impl Repr<*String> for ~str {}
 
 // sure would be nice to have this
 // impl<T> Repr<*Vec<T>> for ~[T] {}