auto merge of #13290 : alexcrichton/rust/rollup, r=alexcrichton
Closes #13285 (rustc: Stop using LLVMGetSectionName) Closes #13280 (std: override clone_from for Vec.) Closes #13277 (serialize: add a few missing pubs to base64) Closes #13275 (Add and remove some ignore-win32 flags) Closes #13273 (Removed managed boxes from libarena.) Closes #13270 (Minor copy-editing for the tutorial) Closes #13267 (fix Option<~ZeroSizeType>) Closes #13265 (Update emacs mode to support new `#![inner(attribute)]` syntax.) Closes #13263 (syntax: Remove AbiSet, use one Abi)
This commit is contained in:
commit
e7fe207229
64 changed files with 389 additions and 1151 deletions
|
|
@ -975,7 +975,7 @@ impl Clean<BareFunctionDecl> for ast::BareFnTy {
|
|||
type_params: Vec::new(),
|
||||
},
|
||||
decl: self.decl.clean(),
|
||||
abi: self.abis.to_str(),
|
||||
abi: self.abi.to_str(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
//! Rust AST Visitor. Extracts useful information and massages it into a form
|
||||
//! usable for clean
|
||||
|
||||
use syntax::abi::AbiSet;
|
||||
use syntax::abi;
|
||||
use syntax::ast;
|
||||
use syntax::ast_util;
|
||||
use syntax::ast_map;
|
||||
|
|
@ -95,7 +95,7 @@ impl<'a> RustdocVisitor<'a> {
|
|||
}
|
||||
|
||||
pub fn visit_fn(&mut self, item: &ast::Item, fd: &ast::FnDecl,
|
||||
purity: &ast::Purity, _abi: &AbiSet,
|
||||
purity: &ast::Purity, _abi: &abi::Abi,
|
||||
gen: &ast::Generics) -> Function {
|
||||
debug!("Visiting fn");
|
||||
Function {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue