Skip to content

Commit d3732a1

Browse files
committed
Auto merge of #21997 - Manishearth:rollup, r=alexcrichton
None
2 parents b75b21c + df7db97 commit d3732a1

File tree

110 files changed

+2054
-2032
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+2054
-2032
lines changed

src/compiletest/compiletest.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,10 @@ pub fn parse_config(args: Vec<String> ) -> Config {
118118
}
119119

120120
fn opt_path(m: &getopts::Matches, nm: &str) -> Path {
121-
Path::new(m.opt_str(nm).unwrap())
121+
match m.opt_str(nm) {
122+
Some(s) => Path::new(s),
123+
None => panic!("no option (=path) found for {}", nm),
124+
}
122125
}
123126

124127
let filter = if !matches.free.is_empty() {

src/doc/reference.md

-1
Original file line numberDiff line numberDiff line change
@@ -1813,7 +1813,6 @@ default visibility with the `priv` keyword. When an item is declared as `pub`,
18131813
it can be thought of as being accessible to the outside world. For example:
18141814

18151815
```
1816-
# #![allow(missing_copy_implementations)]
18171816
# fn main() {}
18181817
// Declare a private struct
18191818
struct Foo;

src/doc/trpl/ownership.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ fn print<'a>(s: &'a str); // expanded
523523
fn debug(lvl: u32, s: &str); // elided
524524
fn debug<'a>(lvl: u32, s: &'a str); // expanded
525525
526-
// In the preceeding example, `lvl` doesn't need a lifetime because it's not a
526+
// In the preceding example, `lvl` doesn't need a lifetime because it's not a
527527
// reference (`&`). Only things relating to references (such as a `struct`
528528
// which contains a reference) need lifetimes.
529529

src/etc/featureck.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,9 @@
194194
if not name in joint_features:
195195
print "error: feature '" + name + "' is both a lang and lib feature but not whitelisted"
196196
errors = True
197-
lang_status = lang_feature_stats[name][3]
197+
lang_status = language_feature_stats[name][3]
198198
lib_status = lib_feature_stats[name][3]
199-
lang_stable_since = lang_feature_stats[name][4]
199+
lang_stable_since = language_feature_stats[name][4]
200200
lib_stable_since = lib_feature_stats[name][4]
201201

202202
if lang_status != lib_status and lib_status != "deprecated":

src/grammar/parser-lalr.y

+1-1
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,7 @@ maybe_stmts
11951195
//
11961196
// There are also two other expr subtypes: first, nonparen_expr
11971197
// disallows exprs surrounded by parens (including tuple expressions),
1198-
// this is neccesary for BOX (place) expressions, so a parens expr
1198+
// this is necessary for BOX (place) expressions, so a parens expr
11991199
// following the BOX is always parsed as the place. There is also
12001200
// expr_norange used in index_expr, which disallows '..' in
12011201
// expressions as that has special meaning inside of brackets.

src/liballoc/arc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ impl<T: Sync + Send> Drop for Arc<T> {
311311
///
312312
/// // stuff
313313
///
314-
/// drop(five); // explict drop
314+
/// drop(five); // explicit drop
315315
/// }
316316
/// {
317317
/// let five = Arc::new(5);
@@ -441,7 +441,7 @@ impl<T: Sync + Send> Drop for Weak<T> {
441441
///
442442
/// // stuff
443443
///
444-
/// drop(weak_five); // explict drop
444+
/// drop(weak_five); // explicit drop
445445
/// }
446446
/// {
447447
/// let five = Arc::new(5);

src/liballoc/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@
7373
#![feature(unboxed_closures)]
7474
#![feature(core)]
7575
#![feature(hash)]
76-
#![feature(libc)]
76+
#![cfg_attr(all(not(feature = "external_funcs"), not(feature = "external_crate")),
77+
feature(libc))]
78+
7779

7880
#[macro_use]
7981
extern crate core;

src/liballoc/rc.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ impl<T> Drop for Rc<T> {
383383
///
384384
/// // stuff
385385
///
386-
/// drop(five); // explict drop
386+
/// drop(five); // explicit drop
387387
/// }
388388
/// {
389389
/// let five = Rc::new(5);
@@ -688,7 +688,7 @@ impl<T> Drop for Weak<T> {
688688
///
689689
/// // stuff
690690
///
691-
/// drop(weak_five); // explict drop
691+
/// drop(weak_five); // explicit drop
692692
/// }
693693
/// {
694694
/// let five = Rc::new(5);

src/libcollections/bench.rs

+17-18
Original file line numberDiff line numberDiff line change
@@ -13,40 +13,40 @@ use std::rand;
1313
use std::rand::Rng;
1414
use test::{Bencher, black_box};
1515

16-
pub fn insert_rand_n<M, I, R>(n: uint,
16+
pub fn insert_rand_n<M, I, R>(n: usize,
1717
map: &mut M,
1818
b: &mut Bencher,
1919
mut insert: I,
2020
mut remove: R) where
21-
I: FnMut(&mut M, uint),
22-
R: FnMut(&mut M, uint),
21+
I: FnMut(&mut M, usize),
22+
R: FnMut(&mut M, usize),
2323
{
2424
// setup
2525
let mut rng = rand::weak_rng();
2626

2727
for _ in 0..n {
28-
insert(map, rng.gen::<uint>() % n);
28+
insert(map, rng.gen::<usize>() % n);
2929
}
3030

3131
// measure
3232
b.iter(|| {
33-
let k = rng.gen::<uint>() % n;
33+
let k = rng.gen::<usize>() % n;
3434
insert(map, k);
3535
remove(map, k);
3636
});
3737
black_box(map);
3838
}
3939

40-
pub fn insert_seq_n<M, I, R>(n: uint,
40+
pub fn insert_seq_n<M, I, R>(n: usize,
4141
map: &mut M,
4242
b: &mut Bencher,
4343
mut insert: I,
4444
mut remove: R) where
45-
I: FnMut(&mut M, uint),
46-
R: FnMut(&mut M, uint),
45+
I: FnMut(&mut M, usize),
46+
R: FnMut(&mut M, usize),
4747
{
4848
// setup
49-
for i in 0u..n {
49+
for i in 0..n {
5050
insert(map, i * 2);
5151
}
5252

@@ -60,18 +60,17 @@ pub fn insert_seq_n<M, I, R>(n: uint,
6060
black_box(map);
6161
}
6262

63-
pub fn find_rand_n<M, T, I, F>(n: uint,
63+
pub fn find_rand_n<M, T, I, F>(n: usize,
6464
map: &mut M,
6565
b: &mut Bencher,
6666
mut insert: I,
6767
mut find: F) where
68-
I: FnMut(&mut M, uint),
69-
F: FnMut(&M, uint) -> T,
68+
I: FnMut(&mut M, usize),
69+
F: FnMut(&M, usize) -> T,
7070
{
7171
// setup
7272
let mut rng = rand::weak_rng();
73-
let mut keys = (0..n).map(|_| rng.gen::<uint>() % n)
74-
.collect::<Vec<_>>();
73+
let mut keys: Vec<_> = (0..n).map(|_| rng.gen::<usize>() % n).collect();
7574

7675
for k in &keys {
7776
insert(map, *k);
@@ -88,16 +87,16 @@ pub fn find_rand_n<M, T, I, F>(n: uint,
8887
})
8988
}
9089

91-
pub fn find_seq_n<M, T, I, F>(n: uint,
90+
pub fn find_seq_n<M, T, I, F>(n: usize,
9291
map: &mut M,
9392
b: &mut Bencher,
9493
mut insert: I,
9594
mut find: F) where
96-
I: FnMut(&mut M, uint),
97-
F: FnMut(&M, uint) -> T,
95+
I: FnMut(&mut M, usize),
96+
F: FnMut(&M, usize) -> T,
9897
{
9998
// setup
100-
for i in 0u..n {
99+
for i in 0..n {
101100
insert(map, i);
102101
}
103102

0 commit comments

Comments
 (0)