Skip to content

Commit 9a0995b

Browse files
committed
---
yaml --- r: 42069 b: refs/heads/master c: c5461e4 h: refs/heads/master i: 42067: 6c1fcec v: v3
1 parent e1ef35e commit 9a0995b

File tree

6 files changed

+11
-1
lines changed

6 files changed

+11
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 31d78b2f0756b88cb5923dab9b264733a9579a53
2+
refs/heads/master: c5461e46aecbf42a23bdecb4cc3f8320fba2866b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
55
refs/heads/try: 3d5418789064fdb463e872a4e651af1c628a3650

trunk/src/libcore/extfmt.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@
5555
#[forbid(deprecated_mode)];
5656
#[forbid(deprecated_pattern)];
5757

58+
// Transitional
59+
#[allow(structural_records)]; // Macros -- needs a snapshot
60+
5861
/*
5962
Syntax Extension: fmt
6063

trunk/src/libcore/gc.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ with destructors.
3838
// NB: transitionary, de-mode-ing.
3939
#[forbid(deprecated_mode)];
4040
#[forbid(deprecated_pattern)];
41+
// Transitional
42+
#[allow(structural_records)];
4143

4244
use cast;
4345
use io;

trunk/src/libcore/os.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// NB: transitionary, de-mode-ing.
1212
#[forbid(deprecated_mode)];
1313
#[forbid(deprecated_pattern)];
14+
#[allow(structural_records)];
1415

1516
/*!
1617
* Higher-level interfaces to libc::* functions and operating system services.

trunk/src/libcore/pipes.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ bounded and unbounded protocols allows for less code duplication.
8787
// re-forbid after snapshot
8888
#[forbid(deprecated_pattern)];
8989

90+
// Transitional -- needs snapshot
91+
#[allow(structural_records)];
92+
9093
use cmp::Eq;
9194
use cast::{forget, reinterpret_cast, transmute};
9295
use either::{Either, Left, Right};

trunk/src/libcore/run.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
// NB: transitionary, de-mode-ing.
1212
#[forbid(deprecated_mode)];
1313
#[forbid(deprecated_pattern)];
14+
#[allow(structural_records)];
1415

1516
//! Process spawning
1617
use io;

0 commit comments

Comments
 (0)