diff options
author | drh <drh@noemail.net> | 2015-09-08 21:16:46 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-09-08 21:16:46 +0000 |
commit | 0c6dfaa34a4bee1e85a982dbf2346c95df81bc4f (patch) | |
tree | c82b5f64f1ad6ba3ce22b83792f623d383253479 /tool/lemon.c | |
parent | a46a4a63de1853cf4dac3ecfad4bbefa596d670d (diff) | |
download | sqlite-0c6dfaa34a4bee1e85a982dbf2346c95df81bc4f.tar.gz sqlite-0c6dfaa34a4bee1e85a982dbf2346c95df81bc4f.zip |
Remove an unused local variable from Lemon.
FossilOrigin-Name: fe9ffe5eed7d376f3f08c78c1ce5514c886f3479
Diffstat (limited to 'tool/lemon.c')
-rw-r--r-- | tool/lemon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lemon.c b/tool/lemon.c index e24fe4212..2e8054b5c 100644 --- a/tool/lemon.c +++ b/tool/lemon.c @@ -4302,7 +4302,7 @@ void CompressTables(struct lemon *lemp) struct state *stp; struct action *ap, *ap2; struct rule *rp, *rp2, *rbest; - int nbest, n, nshift; + int nbest, n; int i; int usesWildcard; |