aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crates/ra_mbe/src/parser.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_mbe/src/parser.rs b/crates/ra_mbe/src/parser.rs
index 575f587cf..50b8011a9 100644
--- a/crates/ra_mbe/src/parser.rs
+++ b/crates/ra_mbe/src/parser.rs
@@ -142,7 +142,6 @@ fn is_boolean_literal(lit: &tt::Literal) -> bool {
142 } 142 }
143} 143}
144 144
145///TOOD: impl for slice iter
146fn parse_repeat(src: &mut TtIter) -> Result<(Option<Separator>, RepeatKind), ExpandError> { 145fn parse_repeat(src: &mut TtIter) -> Result<(Option<Separator>, RepeatKind), ExpandError> {
147 let mut separator = Separator::Puncts(SmallVec::new()); 146 let mut separator = Separator::Puncts(SmallVec::new());
148 for tt in src { 147 for tt in src {