File tree 4 files changed +4
-3
lines changed
4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ mod test {
139
139
140
140
use std:: cast;
141
141
142
- use enum_set:: * ;
142
+ use enum_set:: { EnumSet , CLike } ;
143
143
144
144
#[ deriving( Eq ) ]
145
145
#[ repr( uint) ]
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ pub use bitv::Bitv;
26
26
pub use btree:: BTree ;
27
27
pub use deque:: Deque ;
28
28
pub use dlist:: DList ;
29
+ pub use enum_set:: EnumSet ;
29
30
pub use list:: List ;
30
31
pub use lru_cache:: LruCache ;
31
32
pub use priority_queue:: PriorityQueue ;
@@ -37,6 +38,7 @@ pub mod bitv;
37
38
pub mod btree;
38
39
pub mod deque;
39
40
pub mod dlist;
41
+ pub mod enum_set;
40
42
pub mod list;
41
43
pub mod lru_cache;
42
44
pub mod priority_queue;
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ pub mod json;
50
50
pub mod tempfile;
51
51
pub mod time;
52
52
pub mod workcache;
53
- pub mod enum_set;
54
53
pub mod stats;
55
54
56
55
#[ cfg( unicode) ]
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ use syntax::opt_vec::OptVec;
50
50
use syntax:: opt_vec;
51
51
use syntax:: abi:: AbiSet ;
52
52
use syntax;
53
- use extra :: enum_set:: { EnumSet , CLike } ;
53
+ use collections :: enum_set:: { EnumSet , CLike } ;
54
54
55
55
pub type Disr = u64 ;
56
56
You can’t perform that action at this time.
0 commit comments