diff --git a/src/protocol/parser/token_parsing.rs b/src/protocol/parser/token_parsing.rs index f9cc693182f025fbfb9491ebd2fc4fc60a59ebca..86176ef6bf8a7a5d9982069c185d4feb5a0aa2f0 100644 --- a/src/protocol/parser/token_parsing.rs +++ b/src/protocol/parser/token_parsing.rs @@ -287,7 +287,6 @@ pub(crate) fn consume_comma_separated( /// Consumes an integer literal, may be binary, octal, hexadecimal or decimal, /// and may have separating '_'-characters. -/// TODO: @Cleanup, @Performance pub(crate) fn consume_integer_literal(source: &InputSource, iter: &mut TokenIter, buffer: &mut String) -> Result<(u64, InputSpan), ParseError> { if Some(TokenKind::Integer) != iter.next() { return Err(ParseError::new_error_str_at_pos(source, iter.last_valid_pos(), "expected an integer literal"));