iohelpers: fix cout redirection typo

This commit is contained in:
Mirek Kratochvil 2013-04-21 13:13:10 +02:00
parent fbe829f71e
commit 716b5eed55

View file

@ -29,7 +29,7 @@ bool redirect_cin (const std::string& fn)
bool redirect_cout (const std::string& fn)
{
static std::ifstream alt_cout;
static std::ofstream alt_cout;
alt_cout.open (fn.c_str(), std::ios::out | std::ios::binary);
if (alt_cout.fail() ) return false;
std::cout.rdbuf (alt_cout.rdbuf() );