From 4ea84fc1844625eb8049d081620aac53009bce4b Mon Sep 17 00:00:00 2001 From: Huon Wilson Date: Wed, 6 Jan 2016 12:28:34 +1100 Subject: [PATCH] Remove irrelevant comment 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. --- src/libsyntax/parse/token.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs index b942954c1874a..242626154fc8c 100644 --- a/src/libsyntax/parse/token.rs +++ b/src/libsyntax/parse/token.rs @@ -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);)*