Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 587134
Collapse All | Expand All

(-)mailfilter-0.8.5/src/rcfile.cc (-1 / +1 lines)
Lines 1528-1534 ECHO; Link Here
1528
 * This constructor simply maintains backward compatibility.
1528
 * This constructor simply maintains backward compatibility.
1529
 * DEPRECATED
1529
 * DEPRECATED
1530
 */
1530
 */
1531
yyFlexLexer::yyFlexLexer( FLEX_STD istream* arg_yyin, FLEX_STD ostream* arg_yyout ):
1531
yyFlexLexer::yyFlexLexer( std::istream* arg_yyin, std::ostream* arg_yyout ):
1532
	yyin(arg_yyin ? arg_yyin->rdbuf() : std::cin.rdbuf()),
1532
	yyin(arg_yyin ? arg_yyin->rdbuf() : std::cin.rdbuf()),
1533
	yyout(arg_yyout ? arg_yyout->rdbuf() : std::cout.rdbuf())
1533
	yyout(arg_yyout ? arg_yyout->rdbuf() : std::cout.rdbuf())
1534
{
1534
{
(-)mailfilter-0.8.5/src/rfc822.cc (-1 / +1 lines)
Lines 931-937 case YY_STATE_EOF(TAG_READY): Link Here
931
 * This constructor simply maintains backward compatibility.
931
 * This constructor simply maintains backward compatibility.
932
 * DEPRECATED
932
 * DEPRECATED
933
 */
933
 */
934
yyFlexLexer::yyFlexLexer( FLEX_STD istream* arg_yyin, FLEX_STD ostream* arg_yyout ):
934
yyFlexLexer::yyFlexLexer( std::istream* arg_yyin, std::ostream* arg_yyout ):
935
	yyin(arg_yyin ? arg_yyin->rdbuf() : std::cin.rdbuf()),
935
	yyin(arg_yyin ? arg_yyin->rdbuf() : std::cin.rdbuf()),
936
	yyout(arg_yyout ? arg_yyout->rdbuf() : std::cout.rdbuf())
936
	yyout(arg_yyout ? arg_yyout->rdbuf() : std::cout.rdbuf())
937
{
937
{

Return to bug 587134