Richard Hipp wrote:
>  #ifdef sqlite3Parser_ENGINEALWAYSONSTACK
> -  unsigned char zSpace[sizeof(yyParser)];  /* Space for parser engine object 
> */
> +  /* Space to hold the Lemon-generated Parser object */
> +  sqlite3_uint64 zSpace[sizeof(yyParser)/sizeof(sqlite_uint64)];
>  #endif

The yyParser type is known at this place (otherwise, sizeof() would not
work).  So why isn't a variable of this type defined directly?


Regards,
Clemens
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to