From 580a71c9973ba5b9fb16b1fb725e013bd3e27a56 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 25 Aug 2018 07:57:45 -0700 Subject: [PATCH] [parser] This resolved a warning about this variable's value being unread -- idk what is going on here --- parser/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser/src/lib.rs b/parser/src/lib.rs index 982f908..031cd57 100644 --- a/parser/src/lib.rs +++ b/parser/src/lib.rs @@ -76,7 +76,7 @@ impl Iterator for Parser where T: Iterator { type Item = Result; fn next(&mut self) -> Option { - let mut out: Option = None; + let out: Option; let mut result: Option = None; let mut input_lex: Option = None; loop {