remove FIXME(#8372) since for-loops wont support borrowing iterators
This commit is contained in:
parent
be73a1f963
commit
c8be5c3174
1 changed files with 0 additions and 2 deletions
|
@ -298,7 +298,6 @@ pub fn str_lit(lit: &str, diag: Option<(Span, &Handler)>) -> String {
|
|||
debug!("parse_str_lit: given {}", escape_default(lit));
|
||||
let mut res = String::with_capacity(lit.len());
|
||||
|
||||
// FIXME #8372: This could be a for-loop if it didn't borrow the iterator
|
||||
let error = |i| format!("lexer should have rejected {} at {}", lit, i);
|
||||
|
||||
/// Eat everything up to a non-whitespace
|
||||
|
@ -503,7 +502,6 @@ pub fn byte_lit(lit: &str) -> (u8, usize) {
|
|||
pub fn byte_str_lit(lit: &str) -> Lrc<Vec<u8>> {
|
||||
let mut res = Vec::with_capacity(lit.len());
|
||||
|
||||
// FIXME #8372: This could be a for-loop if it didn't borrow the iterator
|
||||
let error = |i| format!("lexer should have rejected {} at {}", lit, i);
|
||||
|
||||
/// Eat everything up to a non-whitespace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue