Skip to content

Commit 5ddc4cb

Browse files
committed
---
yaml --- r: 30734 b: refs/heads/incoming c: 37aee97 h: refs/heads/master v: v3
1 parent 01b8af7 commit 5ddc4cb

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: d324a424d8f84b1eb049b12cf34182bda91b0024
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
9-
refs/heads/incoming: ee7fa194faa0b8140a07a19afc44703916659950
9+
refs/heads/incoming: 37aee97e4b22c58ed2c7898d666c62fb27646851
1010
refs/heads/dist-snap: 2f32a1581f522e524009138b33b1c7049ced668d
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/libcore/send_map.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Sendable hash maps. Very much a work in progress.
44
55
*/
66

7+
// NB: transitionary, de-mode-ing.
8+
#[forbid(deprecated_mode)];
9+
#[forbid(deprecated_pattern)];
10+
711
use cmp::Eq;
812
use hash::Hash;
913
use to_bytes::IterBytes;

branches/incoming/src/libcore/uniq.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
//! Operations on unique pointer types
22
3+
// NB: transitionary, de-mode-ing.
4+
#[forbid(deprecated_mode)];
5+
#[forbid(deprecated_pattern)];
6+
37
use cmp::{Eq, Ord};
48

59
impl<T:Eq> ~const T : Eq {

branches/incoming/src/libcore/unit.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Functions for the unit type.
44
55
*/
66

7+
// NB: transitionary, de-mode-ing.
8+
#[forbid(deprecated_mode)];
9+
#[forbid(deprecated_pattern)];
10+
711
use cmp::{Eq, Ord};
812

913
impl () : Eq {

0 commit comments

Comments
 (0)