Remove unnecessary allocations flagged by lint

This commit is contained in:
Seo Sanghyeon
2013-05-24 01:09:11 +09:00
parent 363e672736
commit 8f80323f09
40 changed files with 161 additions and 161 deletions

View File

@@ -114,7 +114,7 @@ pub fn expand_asm(cx: @ExtCtxt, sp: span, tts: &[ast::token_tree])
p.eat(&token::COMMA);
}
let clob = ~"~{" + *p.parse_str() + ~"}";
let clob = ~"~{" + *p.parse_str() + "}";
clobs.push(clob);
}