From 08bc19cbcd2638f41a5a613150b3d8a7d32072ea Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Tue, 22 Jan 2013 07:01:17 -0800 Subject: [PATCH] Remove bounds from type decl of smallintmap r=brson --- src/libstd/smallintmap.rs | 4 ++-- 1 file 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_ { +struct SmallIntMap_ { v: DVec>, } -pub enum SmallIntMap { +pub enum SmallIntMap { SmallIntMap_(@SmallIntMap_) }