Skip to content

Commit 89793df

Browse files
committed
---
yaml --- r: 219741 b: refs/heads/snap-stage3 c: 7850c8d h: refs/heads/master i: 219739: c9f2e79 v: v3
1 parent bcb3bb5 commit 89793df

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
refs/heads/master: c044791d80ea0dc5c4b57b6030a67b69f8510239
3-
refs/heads/snap-stage3: 8b25086f3dba6d2a452de009914ab5ae058a6d28
3+
refs/heads/snap-stage3: 7850c8d0aa14cd561fcdce816c94532a3d54ff60
44
refs/heads/try: b53c0f93eedcdedd4fd89bccc5a3a09d1c5cd23e
55
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
66
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/snap-stage3/src/libcollections/bit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// except according to those terms.
1010

1111
#![deprecated(reason = "BitVec and BitSet have been migrated to cargo as bit-vec and bit-set",
12-
since = "1.2.0")]
12+
since = "1.3.0")]
1313
#![unstable(feature = "collections", reason = "deprecated")]
1414
#![allow(deprecated)]
1515

branches/snap-stage3/src/libcollections/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ extern crate alloc;
7777
#[cfg(test)] extern crate test;
7878

7979
pub use binary_heap::BinaryHeap;
80+
#[allow(deprecated)]
8081
pub use bit_vec::BitVec;
82+
#[allow(deprecated)]
8183
pub use bit_set::BitSet;
8284
pub use btree_map::BTreeMap;
8385
pub use btree_set::BTreeSet;
@@ -111,11 +113,13 @@ pub mod vec_map;
111113

112114
#[unstable(feature = "bitvec", reason = "RFC 509")]
113115
pub mod bit_vec {
116+
#![allow(deprecated)]
114117
pub use bit::{BitVec, Iter};
115118
}
116119

117120
#[unstable(feature = "bitset", reason = "RFC 509")]
118121
pub mod bit_set {
122+
#![allow(deprecated)]
119123
pub use bit::{BitSet, Union, Intersection, Difference, SymmetricDifference};
120124
pub use bit::SetIter as Iter;
121125
}

branches/snap-stage3/src/librustc_lint/builtin.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
//! Use the former for unit-like structs and the latter for structs with
2929
//! a `pub fn new()`.
3030
31+
// BitSet
32+
#![allow(deprecated)]
33+
3134
use metadata::{csearch, decoder};
3235
use middle::def::*;
3336
use middle::mem_categorization::Typer;

branches/snap-stage3/src/libsyntax/attr.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010

1111
// Functions dealing with attributes and meta items
1212

13+
// BitSet
14+
#![allow(deprecated)]
15+
1316
pub use self::StabilityLevel::*;
1417
pub use self::ReprAttr::*;
1518
pub use self::IntType::*;

0 commit comments

Comments
 (0)