Move SmallVec and ThinVec out of libsyntax

This commit is contained in:
ljedrz
2018-08-05 12:04:56 +02:00
parent d5a448b3f4
commit e5e6375352
35 changed files with 245 additions and 245 deletions

View File

@@ -12,6 +12,8 @@
//
use self::State::*;
use rustc_data_structures::thin_vec::ThinVec;
use syntax::ast;
use syntax::ext::base;
use syntax::ext::base::*;
@@ -263,6 +265,6 @@ pub fn expand_asm<'cx>(cx: &'cx mut ExtCtxt,
ctxt: cx.backtrace(),
})),
span: sp,
attrs: ast::ThinVec::new(),
attrs: ThinVec::new(),
}))
}