WaE: avoid build break on Mac PPC/XCode 2.5

otherwise breaks with
/usr/share/bison.simple: In function ´int yyparse()´:
/usr/share/bison.simple:614: warning: comparison between signed and unsigned integer expressions
/usr/share/bison.simple:626: warning: comparison between signed and unsigned integer expressions
This commit is contained in:
Christian Lohmaier 2012-05-06 21:00:11 +02:00
parent 31182ed084
commit 34513fe619

View File

@ -106,7 +106,9 @@
#define YYDEBUG 1
#if !(defined MACOSX && defined PPC)
#define YYERROR_VERBOSE 1
#endif
using ::rtl::OUString;
using ::rtl::OString;