Skip to content

Commit 8bf6da0

Browse files
committedJun 7, 2014
Test fixes from the rollup
1 parent e5bbbca commit 8bf6da0

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
 

Diff for: ‎src/librustdoc/clean/inline.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ fn try_inline_def(cx: &core::DocContext,
8888
record_extern_fqn(cx, did, clean::TypeModule);
8989
clean::ModuleItem(build_module(cx, tcx, did))
9090
}
91-
ast::DefStatic(did, mtbl) => {
91+
def::DefStatic(did, mtbl) => {
9292
record_extern_fqn(cx, did, clean::TypeStatic);
9393
clean::StaticItem(build_static(tcx, did, mtbl))
9494
}

Diff for: ‎src/libstd/rt/backtrace.rs

-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,6 @@ mod imp {
505505
use c_str::CString;
506506
use container::Container;
507507
use io::{IoResult, Writer};
508-
use iter::Iterator;
509508
use libc;
510509
use mem;
511510
use ops::Drop;

5 commit comments

Comments
 (5)

bors commented on Jun 7, 2014

@bors
Collaborator

saw approval from alexcrichton
at alexcrichton@8bf6da0

bors commented on Jun 7, 2014

@bors
Collaborator

merging alexcrichton/rust/rollup = 8bf6da0 into auto

bors commented on Jun 7, 2014

@bors
Collaborator

alexcrichton/rust/rollup = 8bf6da0 merged ok, testing candidate = e87e180

bors commented on Jun 7, 2014

@bors
Collaborator

fast-forwarding master to auto = e87e180

Please sign in to comment.