diff options
Diffstat (limited to 'src/libstd')
| -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>) } |
