diff options
author | Nadrieril | 2019-02-27 15:35:04 +0100 |
---|---|---|
committer | Nadrieril | 2019-02-27 15:35:58 +0100 |
commit | d5bc8da87f3fed99a010d867a3e34d2768caf768 (patch) | |
tree | f6341f5790a7041c19eb2320edf0d029569543a5 /src/grammar.lalrpop | |
parent | 3118e96dfb9aebc1486886cc6659772a5e91b2e8 (diff) |
Try to update to latest nom
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 35716fc..1e4d323 100644 --- a/src/grammar.lalrpop +++ b/src/grammar.lalrpop @@ -13,7 +13,7 @@ grammar<'input>; extern { type Location = usize; - type Error = LexicalError; + type Error = LexicalError<'input>; enum Tok<'input> { Pi => Tok::Pi, |