diff options
| author | Niko Matsakis <niko@alum.mit.edu> | 2013-01-22 07:01:17 -0800 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2013-01-28 10:01:55 -0800 |
| commit | 08bc19cbcd2638f41a5a613150b3d8a7d32072ea (patch) | |
| tree | d3ddd6bfccf1a0d581bc3b0ee3f80431fc4f2a87 /src/libstd/smallintmap.rs | |
| parent | a4ba11189db2773072fbe9e241669a3e9f4b4429 (diff) | |
| download | rust-08bc19cbcd2638f41a5a613150b3d8a7d32072ea.tar.gz rust-08bc19cbcd2638f41a5a613150b3d8a7d32072ea.zip | |
Remove bounds from type decl of smallintmap
r=brson
Diffstat (limited to 'src/libstd/smallintmap.rs')
| -rw-r--r-- | src/libstd/smallintmap.rs | 4 |
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>) } |
