summaryrefslogtreecommitdiff
path: root/flex.skl
diff options
context:
space:
mode:
authorWill Estes <wlestes@users.sourceforge.net>2001-09-19 19:19:03 +0000
committerWill Estes <wlestes@users.sourceforge.net>2001-09-19 19:19:03 +0000
commit75a2fd64ccaca871257fd678ee0be9b39b6abd1d (patch)
tree1c79d6addd6c580c95161e6100361ed5dafe61e4 /flex.skl
parent29f3e1f0120b0015567a5dca474e17f2d8fb1024 (diff)
made preliminary c++ fixes; the intent is to make it work with recent c++ compilers
Diffstat (limited to 'flex.skl')
-rw-r--r--flex.skl4
1 files changed, 2 insertions, 2 deletions
diff --git a/flex.skl b/flex.skl
index 8d5a6b3..8d09042 100644
--- a/flex.skl
+++ b/flex.skl
@@ -205,7 +205,7 @@ struct yy_buffer_state
%-
FILE *yy_input_file;
%+
- STD istream* yy_input_file;
+ FLEX_STD istream* yy_input_file;
%*
char *yy_ch_buf; /* input buffer */
@@ -867,7 +867,7 @@ do_action: /* This label is used only to access EOF actions. */
} /* end of yylex */
%+
-yyFlexLexer::yyFlexLexer( STD istream* arg_yyin, ostream* arg_yyout )
+yyFlexLexer::yyFlexLexer( FLEX_STD istream* arg_yyin, FLEX_STD ostream* arg_yyout )
{
yyin = arg_yyin;
yyout = arg_yyout;