From 0c0d1387390fb6d30e74387b90663e658cf16b7e Mon Sep 17 00:00:00 2001 From: Tamir Duberstein Date: Tue, 28 Apr 2015 11:41:08 -0700 Subject: [PATCH] `bitflags!` is no longer used in `std` --- src/libstd/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 8473b24172edd..dcaae0a8b99e9 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -307,13 +307,12 @@ mod std { pub use sync; // used for select!() pub use error; // used for try!() pub use fmt; // used for any formatting strings - pub use option; // used for bitflags!{} + pub use option; // used for thread_local!{} pub use rt; // used for panic!() pub use vec; // used for vec![] pub use cell; // used for tls! pub use thread; // used for thread_local! pub use marker; // used for tls! - pub use ops; // used for bitflags! // The test runner calls ::std::env::args() but really wants realstd #[cfg(test)] pub use realstd::env as env;