Skip to content

Commit 8454bf1

Browse files
committed
---
yaml --- r: 235054 b: refs/heads/stable c: 7850c8d h: refs/heads/master v: v3
1 parent 2c29ad6 commit 8454bf1

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
@@ -29,7 +29,7 @@ refs/heads/tmp: afae2ff723393b3ab4ccffef6ac7c6d1809e2da0
2929
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
3030
refs/tags/homu-tmp: f859507de8c410b648d934d8f5ec1c52daac971d
3131
refs/tags/1.0.0-beta: 8cbb92b53468ee2b0c2d3eeb8567005953d40828
32-
refs/heads/stable: 8b25086f3dba6d2a452de009914ab5ae058a6d28
32+
refs/heads/stable: 7850c8d0aa14cd561fcdce816c94532a3d54ff60
3333
refs/tags/1.0.0: 55bd4f8ff2b323f317ae89e254ce87162d52a375
3434
refs/tags/1.1.0: bc3c16f09287e5545c1d3f76b7abd54f2eca868b
3535
refs/tags/1.2.0: f557861f822c34f07270347b94b5280de20a597e

branches/stable/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/stable/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/stable/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/stable/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)