Re: [sqlite] Lemon parser : compile error when using "%token_destructor" directive

2009-06-15 Thread Wilson, Ron P
9 12:54 PM To: Wilson, Ron P Cc: General Discussion of SQLite Database Subject: Re: [sqlite] Lemon parser : compile error when using "%token_destructor" directive On Mon, Jun 15, 2009 at 11:42:26AM -0400, Wilson, Ron P wrote: || It has been a while since I used lemon (big fan thoug

Re: [sqlite] Lemon parser : compile error when using "%token_destructor" directive

2009-06-15 Thread Vincent Zweije
|| Subject: [sqlite] Lemon parser : compile error when using "%token_destructor" directive || || Hi List, || This is the only place I found to ask for "lemon parser" error. || || When trying to use the "%token_destructor" directive: || || %include { || #include || voi

Re: [sqlite] Lemon parser : compile error when using "%token_destructor" directive

2009-06-15 Thread Wilson, Ron P
-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of ferrety ferrety Sent: Monday, June 08, 2009 7:15 PM To: sqlite-users@sqlite.org Subject: [sqlite] Lemon parser : compile error when using "%token_destructor" directive Hi List, This is the only place I fo

[sqlite] Lemon parser : compile error when using "%token_destructor" directive

2009-06-08 Thread ferrety ferrety
Hi List, This is the only place I found to ask for "lemon parser" error. When trying to use the "%token_destructor" directive: %include { #include void token_dtor (struct Token * t) { fprintf(stderr, "In token_destructor: t -> value=%s\n", t -> value); } } %token_destructor {