summaryrefslogtreecommitdiff
path: root/src/flex.skl
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2015-12-04 16:39:39 +0100
committerWill Estes <westes575@gmail.com>2015-12-05 05:46:19 -0500
commit004399be1262e92b8b38cbf9a4cb5ea7ea2217ad (patch)
tree41194cf543c2561ea791b51f4890c3ca9ad65ca7 /src/flex.skl
parent4cea6bfe5484ea99cd017bb24a27b54b87601386 (diff)
Replaced FLEX_STD macro with std::.
The std:: construct exists as of C++98, so we can simply assume it is supported.
Diffstat (limited to 'src/flex.skl')
-rw-r--r--src/flex.skl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flex.skl b/src/flex.skl
index 73a0b9e..a5111be 100644
--- a/src/flex.skl
+++ b/src/flex.skl
@@ -1533,7 +1533,7 @@ do_action: /* This label is used only to access EOF actions. */
* This constructor simply maintains backward compatibility.
* DEPRECATED
*/
-yyFlexLexer::yyFlexLexer( FLEX_STD istream* arg_yyin, FLEX_STD ostream* arg_yyout ):
+yyFlexLexer::yyFlexLexer( std::istream* arg_yyin, std::ostream* arg_yyout ):
yyin(arg_yyin ? arg_yyin->rdbuf() : std::cin.rdbuf()),
yyout(arg_yyout ? arg_yyout->rdbuf() : std::cout.rdbuf())
{