mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 22:18:23 +03:00
Remove bounds from type decl of smallintmap
r=brson
This commit is contained in:
@@ -25,11 +25,11 @@
|
||||
|
||||
// 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>)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user