aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-09-22 21:43:37 +0100
committerAleksey Kladov <[email protected]>2019-09-22 21:43:37 +0100
commit43da23401dad3d708b91e61003e8503a61f57c14 (patch)
tree43dfe5d4ddec13ba9eb9bd42862b58a82103d48f
parent9a0fef71cc2422502401d5e156df751dc242e3e8 (diff)
remove obsolete TOOD
I have no idea what I've meant to fix here :-(
-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 {