help-bison
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[BUG]: Unable to use bison 1.75 to compile QT.


From: Shawn Starr
Subject: [BUG]: Unable to use bison 1.75 to compile QT.
Date: Sat, 21 Dec 2002 22:39:58 -0500
User-agent: KMail/1.5

This comes from qt-copy (CVS -HEAD)

bison -y moc.y
moc.y:849.17: parse error, unexpected ":", expecting ";" or "|"
moc.y:1094.19: parse error, unexpected ":", expecting ";" or "|"


Affected Lines:

849:
simple_type_name:        CHAR                 { $$ = "char"; }
                                       | SHORT              { $$ = "short"; }
                                       | INT                     { $$ = "int"; }
                                       | LONG                { $$ = "long"; }
                                       | SIGNED             { $$ ="signed";}
                                       | UNSIGNED        { $$ = "unsigned"; }
                                       | FLOAT               { $$ = "float"; }
                                       | DOUBLE            { $$ = "double"; }
                                       | VOID                  { $$ = "void";}
                                       ;

1094:
exception_spec_opt:             /* empty */
                                        | exception_spec
                                         ;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]