diff options
Diffstat (limited to 'askama_parser/src')
-rw-r--r-- | askama_parser/src/lib.rs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/askama_parser/src/lib.rs b/askama_parser/src/lib.rs index bc29a22..37c1977 100644 --- a/askama_parser/src/lib.rs +++ b/askama_parser/src/lib.rs @@ -40,11 +40,7 @@ mod _parsed { // internally we will transmute it to `&'static str` to satisfy the compiler. // However, we only expose the nodes with a lifetime limited to `self`. let src = unsafe { mem::transmute::<&str, &'static str>(source.as_str()) }; - let ast = match Ast::from_str(src, syntax) { - Ok(ast) => ast, - Err(e) => return Err(e), - }; - + let ast = Ast::from_str(src, syntax)?; Ok(Self { ast, source }) } |