Fix for Win32 build

This commit is contained in:
Robert Osfield
2002-08-02 19:11:06 +00:00
parent e1a6a18036
commit ddd78eb95e

View File

@@ -1,7 +1,7 @@
#ifndef BISON_PARSER_HPP
# define BISON_PARSER_HPP
//#ifndef YYSTYPE
#ifndef YYSTYPE
typedef union {
char *s_value;
float f_value;
@@ -13,10 +13,11 @@ typedef union {
PolygonList *plist;
Matrix matrix;
int i_value;
} YYSTYPE;
//# define YYSTYPE yystype
//# define YYSTYPE_IS_TRIVIAL 1
//#endif
} yystype;
# define YYSTYPE yystype
# define YYSTYPE_IS_TRIVIAL 1
#endif
# define STRING 257
# define QUOTED_STRING 258
# define FLOAT 259