Skip to content

Commit 2d73f08

Browse files
committed
---
yaml --- r: 50663 b: refs/heads/try c: ef0364e h: refs/heads/master i: 50661: 907a008 50659: cc33682 50655: ee2b777 v: v3
1 parent 554b075 commit 2d73f08

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
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: 1095bbe5eb0bee8d005ea3387829a3d4087868db
5+
refs/heads/try: ef0364e9e47458e6835dfb37c029a35de6c1c5ed
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/src/libcore/at_vec.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
use cast::transmute;
1414
use kinds::Copy;
1515
use iter;
16-
use libc;
1716
use option::Option;
1817
use ptr::addr_of;
1918
use sys;

branches/try/src/libcore/num/cmath.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010

1111
#[doc(hidden)]; // FIXME #3538
1212

13-
use libc::c_int;
14-
use libc::c_float;
15-
use libc::c_double;
16-
1713
// function names are almost identical to C's libmath, a few have been
1814
// renamed, grep for "rename:"
1915

branches/try/src/libcore/vec.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ use iter::BaseIter;
1919
use iter;
2020
use kinds::Copy;
2121
use libc;
22-
use libc::size_t;
2322
use option::{None, Option, Some};
2423
use unstable::intrinsics;
2524
use ptr;
@@ -76,9 +75,9 @@ pub fn reserve<T>(v: &mut ~[T], n: uint) {
7675
let td = sys::get_type_desc::<T>();
7776
if ((**ptr).box_header.ref_count ==
7877
managed::raw::RC_MANAGED_UNIQUE) {
79-
rustrt::vec_reserve_shared_actual(td, ptr, n as size_t);
78+
rustrt::vec_reserve_shared_actual(td, ptr, n as libc::size_t);
8079
} else {
81-
rustrt::vec_reserve_shared(td, ptr, n as size_t);
80+
rustrt::vec_reserve_shared(td, ptr, n as libc::size_t);
8281
}
8382
}
8483
}
@@ -2071,7 +2070,6 @@ pub mod raw {
20712070
use kinds::Copy;
20722071
use managed;
20732072
use option::{None, Some};
2074-
use option;
20752073
use unstable::intrinsics;
20762074
use ptr::addr_of;
20772075
use ptr;

0 commit comments

Comments
 (0)