Bug 2493: Fix (Part 1):

-TEXT_FUNC (const char *text) --> -TEXT_FUNC (char *text)
To prevent Windows compiler error when using flex 2.5.35.
(This also compiles OK for *NIX flex and for windows flex 2.5.4) 

svn path=/trunk/; revision=25172
This commit is contained in:
Bill Meier 2008-04-25 17:24:29 +00:00
parent fbb23743d8
commit ff52380765
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ int MODNAME_wrap(void);
* as the text to scan
*/
void
TEXT_FUNC (const char *text)
TEXT_FUNC (char *text)
{
yy_scan_string(text);
}