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 @@ -50,7 +50,6 @@ pub mod json;
5050pub mod tempfile;
5151pub mod time;
5252pub mod workcache;
53- pub mod enum_set;
5453pub mod stats;
5554
5655#[ cfg( unicode) ]
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ use syntax::opt_vec::OptVec;
5050use syntax:: opt_vec;
5151use syntax:: abi:: AbiSet ;
5252use syntax;
53- use extra :: enum_set:: { EnumSet , CLike } ;
53+ use collections :: enum_set:: { EnumSet , CLike } ;
5454
5555pub type Disr = u64 ;
5656
You can’t perform that action at this time.
0 commit comments