auto merge of #6545 : catamorphism/rust/unused-import, r=catamorphism

This commit is contained in:
bors 2013-05-16 17:52:40 -07:00
commit 17970a9111
2 changed files with 1 additions and 3 deletions

View file

@ -2228,8 +2228,7 @@ pub fn register_fn_fuller(ccx: @CrateContext,
mangle_exported_name(ccx, /*bad*/copy path, node_type)
};
// XXX: Bad copy.
let llfn: ValueRef = decl_fn(ccx.llmod, copy ps, cc, llfty);
let llfn: ValueRef = decl_fn(ccx.llmod, ps, cc, llfty);
ccx.item_symbols.insert(node_id, ps);
// FIXME #4404 android JNI hacks

View file

@ -101,7 +101,6 @@ use middle::ty;
use util::common::indenter;
use util::ppaux::ty_to_str;
use core::container::Set; // XXX: this should not be necessary
use core::to_bytes;
use syntax::ast;
use syntax::codemap::span;