Rollup merge of #30729 - huonw:delete-bad-comment, r=sanxiyn

The fundamental problem of duplication was fixed in https://github.com/rust-lang/rust/pull/10891, but the comment was preserved. Closes https://github.com/rust-lang/rust/issues/9762.
This commit is contained in:
Steve Klabnik 2016-01-06 18:31:58 -05:00
commit d91518b9c4
1 changed files with 0 additions and 3 deletions

View File

@ -495,9 +495,6 @@ macro_rules! declare_special_idents_and_keywords {(
}
fn mk_fresh_ident_interner() -> IdentInterner {
// The indices here must correspond to the numbers in
// special_idents, in Keyword to_name(), and in static
// constants below.
let mut init_vec = Vec::new();
$(init_vec.push($si_str);)*
$(init_vec.push($sk_str);)*