File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ mod test {
139139
140140 use std:: cast;
141141
142- use enum_set:: * ;
142+ use enum_set:: { EnumSet , CLike } ;
143143
144144 #[ deriving( Eq ) ]
145145 #[ repr( uint) ]
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ pub use bitv::Bitv;
2626pub use btree:: BTree ;
2727pub use deque:: Deque ;
2828pub use dlist:: DList ;
29+ pub use enum_set:: EnumSet ;
2930pub use list:: List ;
3031pub use lru_cache:: LruCache ;
3132pub use priority_queue:: PriorityQueue ;
@@ -37,6 +38,7 @@ pub mod bitv;
3738pub mod btree;
3839pub mod deque;
3940pub mod dlist;
41+ pub mod enum_set;
4042pub mod list;
4143pub mod lru_cache;
4244pub mod priority_queue;
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ pub mod json;
4545pub mod tempfile;
4646pub mod time;
4747pub mod workcache;
48- pub mod enum_set;
4948pub mod stats;
5049
5150#[ cfg( unicode) ]
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ use syntax::opt_vec::OptVec;
5252use syntax:: opt_vec;
5353use syntax:: abi:: AbiSet ;
5454use syntax;
55- use extra :: enum_set:: { EnumSet , CLike } ;
55+ use collections :: enum_set:: { EnumSet , CLike } ;
5656
5757pub type Disr = u64 ;
5858
You can’t perform that action at this time.
0 commit comments