search for: preproccessor

Displaying 1 result from an estimated 1 matches for "preproccessor".

Did you mean: preprocessor
1999 Nov 23
1
compile error for mkString on alpha (PR#332)
...gram.c > gram.E grep -n mkString gram.E 8915:SEXP mkString(const char*); 9564:SEXP mkString(const char *); 11995:SEXP mkString( char *s) 12179: protect(yylval = mkString(yytext)); I don't know why the third occurrence of "mkString(const char*);" (line 11995 of preproccessor output) has the "const" removed, it is present in the source! But the trick with typedefing "const char" to "cconst" in the patch above works. BTW, there are many warnings about mixing "char" and "unsigned char", not only in gram.c! Albrecht...