Skip to content

Commit 8878ec0

Browse files
committed
---
yaml --- r: 42735 b: refs/heads/try c: c5461e4 h: refs/heads/master i: 42733: ad9eaf1 42731: d61889c 42727: 89ef194 42719: 053d140 v: v3
1 parent 5ea2908 commit 8878ec0

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 19dfec2aaf746535de1521f68421f9980dbf25de
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 2f46b763da2c098913884f101b6d71d69af41b49
5-
refs/heads/try: 31d78b2f0756b88cb5923dab9b264733a9579a53
5+
refs/heads/try: c5461e46aecbf42a23bdecb4cc3f8320fba2866b
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: a810c03263670238bccd64cabb12a23a46e3a278

branches/try/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

branches/try/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;

branches/try/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.

branches/try/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};

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