Skip to content

Commit 6f28232

Browse files
committed
Auto merge of rust-lang#28054 - zaeleus:ios-imports, r=alexcrichton
This fixes building for ios targets caused by 7925c79.
2 parents 3a80411 + c5ab116 commit 6f28232

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/libstd/sys/unix/backtrace/tracing/backtrace_fn.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,15 @@
2020
2121
use io;
2222
use io::prelude::*;
23-
use iter::Iterator;
2423
use libc;
2524
use mem;
2625
use result::Result::Ok;
2726
use sync::StaticMutex;
2827

29-
use super::printer::print;
28+
use super::super::printing::print;
3029

3130
#[inline(never)]
3231
pub fn write(w: &mut Write) -> io::Result<()> {
33-
use mem;
34-
3532
extern {
3633
fn backtrace(buf: *mut *mut libc::c_void,
3734
sz: libc::c_int) -> libc::c_int;

0 commit comments

Comments
 (0)