Skip to content
This repository has been archived by the owner on May 6, 2020. It is now read-only.

Commit

Permalink
chore(rustup): Rust upgrade to rustc 7cd8f69a4 2015-11-06
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Nov 8, 2015
1 parent c61e528 commit 282dad7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quasi_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "quasi_codegen"
version = "0.3.6"
version = "0.3.7"
authors = ["Erick Tryzelaar <[email protected]>"]
license = "MIT/Apache-2.0"
description = "A quasi-quoting macro system"
Expand Down
2 changes: 1 addition & 1 deletion quasi_codegen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ fn parse_arguments_to_quote(cx: &ExtCtxt, tts: &[ast::TokenTree])
let mut p = cx.new_parser_from_tts(tts);
p.quote_depth += 1;

let cx_expr = p.parse_expr();
let cx_expr = p.parse_expr_panic();
if !p.eat(&token::Comma).ok().unwrap() {
let _ = p.fatal("expected token `,`");
}
Expand Down

0 comments on commit 282dad7

Please sign in to comment.