about summary refs log tree commit diff
path: root/src/libstd/num
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-29 17:01:39 -0800
committerbors <bors@rust-lang.org>2014-01-29 17:01:39 -0800
commit704f93ff5e8a8079af4a16fe984fb9f84b347d11 (patch)
treec643c4ffb3c18a66be6181a2dbd6b795f9d36476 /src/libstd/num
parentf84b7291e7606b35e800070bd826e4c2e2154228 (diff)
parent2d60691eb7a7d2735837cadf05883b3abfcbc160 (diff)
downloadrust-704f93ff5e8a8079af4a16fe984fb9f84b347d11.tar.gz
rust-704f93ff5e8a8079af4a16fe984fb9f84b347d11.zip
auto merge of #11893 : Armavica/rust/copyable-cloneable, r=huonw
I found awkward to have `MutableCloneableVector` and `CloneableIterator` on the one hand, and `CopyableVector` etc. on the other hand.

The concerned traits are:
* `CopyableVector` --> `CloneableVector`
* `OwnedCopyableVector` --> `OwnedCloneableVector`
* `ImmutableCopyableVector` --> `ImmutableCloneableVector`
* `CopyableTuple` --> `CloneableTuple`
Diffstat (limited to 'src/libstd/num')
-rw-r--r--src/libstd/num/strconv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/num/strconv.rs b/src/libstd/num/strconv.rs
index 30abe86866e..67f6d006b57 100644
--- a/src/libstd/num/strconv.rs
+++ b/src/libstd/num/strconv.rs
@@ -18,7 +18,7 @@ use option::{None, Option, Some};
 use char;
 use str::{StrSlice};
 use str;
-use vec::{CopyableVector, ImmutableVector, MutableVector};
+use vec::{CloneableVector, ImmutableVector, MutableVector};
 use vec::OwnedVector;
 use num;
 use num::{NumCast, Zero, One, cast, Integer};