8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

Fixed compiler error: cannot convert dsql_nod**' to dsql_nod*' in initialization

This commit is contained in:
eku 2004-05-06 05:46:24 +00:00
parent 2a56fea64e
commit 7009af2b13

View File

@ -122,7 +122,8 @@ const int DEF_CACHE_BUFFERS = 1000;
// Using this option causes build problems on Win32 with bison 1.28
//#define YYSTACK_USE_ALLOCA 1
#define YYSTYPE dsql_nod*
typedef dsql_nod* YYSTYPE;
#define YYSTYPE YYSTYPE
#if defined(DEBUG) || defined(DEV_BUILD)
#define YYDEBUG 1
#endif