Skip to content

Commit

Permalink
move enum_set to libcollections. #8784
Browse files Browse the repository at this point in the history
  • Loading branch information
HeroesGrave committed Feb 20, 2014
1 parent 879e8aa commit 5bf8d32
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Expand Up @@ -139,7 +139,7 @@ mod test {

use std::cast;

use enum_set::*;
use enum_set::{EnumSet, CLike};

#[deriving(Eq)]
#[repr(uint)]
Expand Down
2 changes: 2 additions & 0 deletions src/libcollections/lib.rs
Expand Up @@ -26,6 +26,7 @@ pub use bitv::Bitv;
pub use btree::BTree;
pub use deque::Deque;
pub use dlist::DList;
pub use enum_set::EnumSet;
pub use list::List;
pub use lru_cache::LruCache;
pub use priority_queue::PriorityQueue;
Expand All @@ -37,6 +38,7 @@ pub mod bitv;
pub mod btree;
pub mod deque;
pub mod dlist;
pub mod enum_set;
pub mod list;
pub mod lru_cache;
pub mod priority_queue;
Expand Down
1 change: 0 additions & 1 deletion src/libextra/lib.rs
Expand Up @@ -50,7 +50,6 @@ pub mod json;
pub mod tempfile;
pub mod time;
pub mod workcache;
pub mod enum_set;
pub mod stats;

#[cfg(unicode)]
Expand Down
2 changes: 1 addition & 1 deletion src/librustc/middle/ty.rs
Expand Up @@ -50,7 +50,7 @@ use syntax::opt_vec::OptVec;
use syntax::opt_vec;
use syntax::abi::AbiSet;
use syntax;
use extra::enum_set::{EnumSet, CLike};
use collections::enum_set::{EnumSet, CLike};

pub type Disr = u64;

Expand Down

5 comments on commit 5bf8d32

@bors
Copy link
Contributor

@bors bors commented on 5bf8d32 Feb 21, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 5bf8d32 Feb 21, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging HeroesGrave/rust/move-enum-set = 5bf8d32 into auto

@bors
Copy link
Contributor

@bors bors commented on 5bf8d32 Feb 21, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

HeroesGrave/rust/move-enum-set = 5bf8d32 merged ok, testing candidate = 2fa7d6b

@bors
Copy link
Contributor

@bors bors commented on 5bf8d32 Feb 21, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on 5bf8d32 Feb 21, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding master to auto = 2fa7d6b

Please sign in to comment.