From 63e3364cc35562e08218b5d03cf602d2d93053db Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 28 Jul 2002 21:15:25 +0000 Subject: [PATCH] Checked in Marco's commented out #defines/rejigged struct names to get things compiling under Windows, will need to check this in future as it may change with regeneration of parser files with lex/yacc. --- src/osgPlugins/iv/parser.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/osgPlugins/iv/parser.hpp b/src/osgPlugins/iv/parser.hpp index 2da3bcd1f..189d89e0f 100644 --- a/src/osgPlugins/iv/parser.hpp +++ b/src/osgPlugins/iv/parser.hpp @@ -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,10 @@ 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