diff options
| author | Brendan Zabarauskas <bjzaba@yahoo.com.au> | 2014-11-16 12:38:03 +1100 |
|---|---|---|
| committer | Brendan Zabarauskas <bjzaba@yahoo.com.au> | 2014-11-16 12:41:55 +1100 |
| commit | d82a7ea57a69954dcc9b58869907a0a070ef432d (patch) | |
| tree | f0d43381cfe3c620b77652a0424b5e7898f39cad /src/libstd/num | |
| parent | 59abf75d9e810f2a88c6dd0f37cfcbd6989a6446 (diff) | |
| download | rust-d82a7ea57a69954dcc9b58869907a0a070ef432d.tar.gz rust-d82a7ea57a69954dcc9b58869907a0a070ef432d.zip | |
Move ToString to collections::string
This also impls `FormatWriter` for `Vec<u8>`
Diffstat (limited to 'src/libstd/num')
| -rw-r--r-- | src/libstd/num/strconv.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/num/strconv.rs b/src/libstd/num/strconv.rs index 31096c0aa46..d1a89d72621 100644 --- a/src/libstd/num/strconv.rs +++ b/src/libstd/num/strconv.rs @@ -423,7 +423,7 @@ static DIGIT_E_RADIX: uint = ('e' as uint) - ('a' as uint) + 11u; #[cfg(test)] mod tests { - use to_string::ToString; + use string::ToString; #[test] fn test_int_to_str_overflow() { |
