librustc: fix fallout
This commit is contained in:
parent
594ff51b23
commit
01d2e46a2d
1 changed files with 3 additions and 1 deletions
|
|
@ -212,7 +212,9 @@ fn get_provided_source(d: rbml::Doc, cdata: Cmd) -> Option<ast::DefId> {
|
|||
})
|
||||
}
|
||||
|
||||
fn each_reexport(d: rbml::Doc, f: |rbml::Doc| -> bool) -> bool {
|
||||
fn each_reexport<F>(d: rbml::Doc, f: F) -> bool where
|
||||
F: FnMut(rbml::Doc) -> bool,
|
||||
{
|
||||
reader::tagged_docs(d, tag_items_data_item_reexport, f)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue