about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2013-01-22 07:01:17 -0800
committerNiko Matsakis <niko@alum.mit.edu>2013-01-28 10:01:55 -0800
commit08bc19cbcd2638f41a5a613150b3d8a7d32072ea (patch)
treed3ddd6bfccf1a0d581bc3b0ee3f80431fc4f2a87 /src/libstd
parenta4ba11189db2773072fbe9e241669a3e9f4b4429 (diff)
downloadrust-08bc19cbcd2638f41a5a613150b3d8a7d32072ea.tar.gz
rust-08bc19cbcd2638f41a5a613150b3d8a7d32072ea.zip
Remove bounds from type decl of smallintmap
r=brson
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/smallintmap.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/smallintmap.rs b/src/libstd/smallintmap.rs
index feabb678d66..5f16f7155b6 100644
--- a/src/libstd/smallintmap.rs
+++ b/src/libstd/smallintmap.rs
@@ -25,11 +25,11 @@ use core::prelude::*;
 
 // FIXME (#2347): Should not be @; there's a bug somewhere in rustc that
 // requires this to be.
-struct SmallIntMap_<T: Copy> {
+struct SmallIntMap_<T> {
     v: DVec<Option<T>>,
 }
 
-pub enum SmallIntMap<T:Copy> {
+pub enum SmallIntMap<T> {
     SmallIntMap_(@SmallIntMap_<T>)
 }