diff options
author | Nadrieril | 2019-02-27 15:36:12 +0100 |
---|---|---|
committer | Nadrieril | 2019-02-27 15:36:12 +0100 |
commit | 8a1012be323459440032813c2b21b62174924c6c (patch) | |
tree | d2a64f401f552106318f2ededd7043f5aefbd92e /src/grammar.lalrpop | |
parent | d5bc8da87f3fed99a010d867a3e34d2768caf768 (diff) |
Revert "Try to update to latest nom"
This reverts commit d5bc8da87f3fed99a010d867a3e34d2768caf768.
Diffstat (limited to '')
-rw-r--r-- | src/grammar.lalrpop | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grammar.lalrpop b/src/grammar.lalrpop index 1e4d323..35716fc 100644 --- a/src/grammar.lalrpop +++ b/src/grammar.lalrpop @@ -13,7 +13,7 @@ grammar<'input>; extern { type Location = usize; - type Error = LexicalError<'input>; + type Error = LexicalError; enum Tok<'input> { Pi => Tok::Pi, |