aboutsummaryrefslogtreecommitdiff
path: root/src/lua/template.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lua/template.rs')
-rw-r--r--src/lua/template.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lua/template.rs b/src/lua/template.rs
index de13481..99dfded 100644
--- a/src/lua/template.rs
+++ b/src/lua/template.rs
@@ -94,9 +94,9 @@ impl<'a> ParserState<'a> {
match tok {
MarkerToken::StripMarker => match usize::from_str_radix(&lex.slice()[6..11], 16) {
Ok(idx) => {
- render(&self.substitutions[idx], &mut out);
+ let _ = render(&self.substitutions[idx], &mut out);
}
- Err(e) => out.push_str(lex.slice()),
+ Err(_) => out.push_str(lex.slice()),
},
MarkerToken::Other => out.push_str(lex.slice()),
}