Skip to content

Commit 0b15cc3

Browse files
committed
---
yaml --- r: 51073 b: refs/heads/try c: 8896336 h: refs/heads/master i: 51071: 61bca62 v: v3
1 parent 1201bb3 commit 0b15cc3

File tree

10 files changed

+12
-28
lines changed

10 files changed

+12
-28
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: 5f13e9ccc2e3328d4cd8ca49f84e6840dd998346
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: f7a2371c176663d59062ec5158f39faecba45768
5-
refs/heads/try: 09255dbe2d7a94cf6a3d8bf426e428f1a50d3e8c
5+
refs/heads/try: 88963367707c65ad9e84eb2f9f01a5874e90dd96
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/RELEASES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ Version 0.6 (March 2013)
6262
* Pattern matching over vectors improved and expanded
6363
* Typechecking of closure types has been overhauled to
6464
improve inference and eliminate unsoundness
65+
* Macros leave scope at the end of modules, unless that module is
66+
tagged with #[macro_escape]
6567

6668
* Libraries
6769
* Added big integers to `std::bigint`

branches/try/configure

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,6 @@ case $CFG_OSTYPE in
308308
esac
309309

310310

311-
if [ -z "$CFG_CPUTYPE" ]
312-
then
313311
case $CFG_CPUTYPE in
314312

315313
i386 | i486 | i686 | i786 | x86)
@@ -327,7 +325,6 @@ case $CFG_CPUTYPE in
327325
*)
328326
err "unknown CPU type: $CFG_CPUTYPE"
329327
esac
330-
fi
331328

332329
# Detect 64 bit linux systems with 32 bit userland and force 32 bit compilation
333330
if [ $CFG_OSTYPE = unknown-linux-gnu -a $CFG_CPUTYPE = x86_64 ]
@@ -575,7 +572,7 @@ fi
575572
CFG_PREFIX=${CFG_PREFIX%/}
576573
CFG_HOST_TRIPLES="$(echo $CFG_HOST_TRIPLES | tr ',' ' ')"
577574
CFG_TARGET_TRIPLES="$(echo $CFG_TARGET_TRIPLES | tr ',' ' ')"
578-
CFG_SUPPORTED_TARGET_TRIPLES="$(grep ^CC_*=* $CFG_SRC_DIR/mk/platform.mk | sed 's,^[^_]*_,,' | sed 's/\([^=]*\).*/\1/' | xargs)"
575+
CFG_SUPPORTED_TARGET_TRIPLES="$(grep ^CC_*=* $CFG_SRC_DIR/mk/platform.mk | sed -e 's/^CC_//' -e 's/\([^=]*\).*/\1/' | xargs)"
579576

580577
# copy host-triples to target-triples so that hosts are a subset of targets
581578
V_TEMP=""

branches/try/src/libcore/hashmap.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
//! Sendable hash maps.
11+
//! An unordered map and set type implemented as hash tables
12+
//!
13+
//! The tables use a keyed hash with new random keys generated for each container, so the ordering
14+
//! of a set of keys in a hash table is randomized.
1215
1316
/// Open addressing with linear probing.
1417
pub mod linear {

branches/try/src/libcore/ops.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
// Core operators
11+
//! Traits for the built-in operators
1212
1313
#[lang="drop"]
1414
pub trait Drop {

branches/try/src/libstd/base64.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
//! Base64 binary-to-text encoding
12+
1113
use core::iter;
1214
use core::str;
1315
use core::vec;

branches/try/src/libsyntax/parse/parser.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3214,10 +3214,6 @@ pub impl Parser {
32143214
}
32153215
}
32163216
}
3217-
if fields.len() == 0 {
3218-
self.fatal(fmt!("Unit-like struct should be written as: struct %s;",
3219-
*self.interner.get(class_name)));
3220-
}
32213217
self.bump();
32223218
} else if *self.token == token::LPAREN {
32233219
// It's a tuple-like struct.

branches/try/src/test/compile-fail/block-must-not-have-result-res.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
// error-pattern:mismatched types: expected `()` but found `bool`
1212

13-
struct r;
13+
struct r {}
1414

1515
impl Drop for r {
1616
fn finalize(&self) {

branches/try/src/test/compile-fail/obsolete-syntax.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,9 @@ struct s {
3131

3232
struct q : r {
3333
//~^ ERROR obsolete syntax: class traits
34-
foo: int
3534
}
3635

3736
struct sss {
38-
bar: int,
3937
priv {
4038
//~^ ERROR obsolete syntax: private section
4139
foo: ()

branches/try/src/test/compile-fail/struct-no-fields.rs

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)