about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-03-13 20:03:52 -0700
committerbors <bors@rust-lang.org>2013-03-13 20:03:52 -0700
commit3cee6763d1acc14b8e46117766730ca3a07dbf6b (patch)
tree31952d7ce7735b443a534706c9978ec35155af1a /src
parent900a0c8df15162e750a6f34496dcf239d0848503 (diff)
parent688c4c403d087245464e2bf0c5a8c2c760c50fc6 (diff)
downloadrust-3cee6763d1acc14b8e46117766730ca3a07dbf6b.tar.gz
rust-3cee6763d1acc14b8e46117766730ca3a07dbf6b.zip
auto merge of #5336 : ILyoan/rust/remove_unused, r=sanxiyn
Remove unused imports to get rid of warnings.
Diffstat (limited to 'src')
-rw-r--r--src/libcore/at_vec.rs1
-rw-r--r--src/libcore/num/cmath.rs4
-rw-r--r--src/libcore/vec.rs6
-rw-r--r--src/librustc/middle/trans/controlflow.rs1
-rw-r--r--src/librustc/middle/typeck/check/mod.rs1
-rw-r--r--src/libstd/test.rs1
6 files changed, 2 insertions, 12 deletions
diff --git a/src/libcore/at_vec.rs b/src/libcore/at_vec.rs
index fa19e24aa08..8cd8b297e2f 100644
--- a/src/libcore/at_vec.rs
+++ b/src/libcore/at_vec.rs
@@ -13,7 +13,6 @@
 use cast::transmute;
 use kinds::Copy;
 use iter;
-use libc;
 use option::Option;
 use ptr::addr_of;
 use sys;
diff --git a/src/libcore/num/cmath.rs b/src/libcore/num/cmath.rs
index 342a02c836a..2f9d4304cba 100644
--- a/src/libcore/num/cmath.rs
+++ b/src/libcore/num/cmath.rs
@@ -10,10 +10,6 @@
 
 #[doc(hidden)]; // FIXME #3538
 
-use libc::c_int;
-use libc::c_float;
-use libc::c_double;
-
 // function names are almost identical to C's libmath, a few have been
 // renamed, grep for "rename:"
 
diff --git a/src/libcore/vec.rs b/src/libcore/vec.rs
index 68dca608a48..2c447b3e4ae 100644
--- a/src/libcore/vec.rs
+++ b/src/libcore/vec.rs
@@ -19,7 +19,6 @@ use iter::BaseIter;
 use iter;
 use kinds::Copy;
 use libc;
-use libc::size_t;
 use option::{None, Option, Some};
 use unstable::intrinsics;
 use ptr;
@@ -76,9 +75,9 @@ pub fn reserve<T>(v: &mut ~[T], n: uint) {
             let td = sys::get_type_desc::<T>();
             if ((**ptr).box_header.ref_count ==
                 managed::raw::RC_MANAGED_UNIQUE) {
-                rustrt::vec_reserve_shared_actual(td, ptr, n as size_t);
+                rustrt::vec_reserve_shared_actual(td, ptr, n as libc::size_t);
             } else {
-                rustrt::vec_reserve_shared(td, ptr, n as size_t);
+                rustrt::vec_reserve_shared(td, ptr, n as libc::size_t);
             }
         }
     }
@@ -2071,7 +2070,6 @@ pub mod raw {
     use kinds::Copy;
     use managed;
     use option::{None, Some};
-    use option;
     use unstable::intrinsics;
     use ptr::addr_of;
     use ptr;
diff --git a/src/librustc/middle/trans/controlflow.rs b/src/librustc/middle/trans/controlflow.rs
index 3a0968d750a..40394391f1a 100644
--- a/src/librustc/middle/trans/controlflow.rs
+++ b/src/librustc/middle/trans/controlflow.rs
@@ -30,7 +30,6 @@ use syntax::ast::ident;
 use syntax::ast_map::path_mod;
 use syntax::ast_util;
 use syntax::codemap::span;
-use syntax::print::pprust::expr_to_str;
 
 pub fn trans_block(bcx: block, b: &ast::blk, dest: expr::Dest) -> block {
     let _icx = bcx.insn_ctxt("trans_block");
diff --git a/src/librustc/middle/typeck/check/mod.rs b/src/librustc/middle/typeck/check/mod.rs
index 9baea38bd7c..17595913f94 100644
--- a/src/librustc/middle/typeck/check/mod.rs
+++ b/src/librustc/middle/typeck/check/mod.rs
@@ -1706,7 +1706,6 @@ pub fn check_expr_with_unifier(fcx: @mut FnCtxt,
         let expr_t = structurally_resolved_type(fcx, expr.span,
                                                 fcx.expr_ty(base));
         let (base_t, derefs) = do_autoderef(fcx, expr.span, expr_t);
-        let n_tys = tys.len();
 
         match structure_of(fcx, expr.span, base_t) {
             ty::ty_struct(base_id, ref substs) => {
diff --git a/src/libstd/test.rs b/src/libstd/test.rs
index 7286ce5e2bd..3f363b613d7 100644
--- a/src/libstd/test.rs
+++ b/src/libstd/test.rs
@@ -26,7 +26,6 @@ use core::either::Either;
 use core::either;
 use core::io::WriterUtil;
 use core::io;
-use core::libc::size_t;
 use core::comm::{stream, Chan, Port, SharedChan};
 use core::option;
 use core::prelude::*;