summaryrefslogtreecommitdiff
path: root/flex.skl
diff options
context:
space:
mode:
authorwlestes <wlestes>2001-09-19 19:19:03 +0000
committerwlestes <wlestes>2001-09-19 19:19:03 +0000
commit8aaff4dcba186b60446c8321fc2a5a42cce06c25 (patch)
treea110e9508bfd51dca44c1a50a36c915d23930a39 /flex.skl
parent233d77eb26df8edf5c07963825a52476136a2f83 (diff)
downloadflex-8aaff4dcba186b60446c8321fc2a5a42cce06c25.tar.gz
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;