Remove bounds from type decl of smallintmap

r=brson
This commit is contained in:
Niko Matsakis 2013-01-22 07:01:17 -08:00
parent a4ba11189d
commit 08bc19cbcd
1 changed files with 2 additions and 2 deletions

View File

@ -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>)
}