From 716b5eed5562fae4d2a1d86c63079ff8f755867c Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sun, 21 Apr 2013 13:13:10 +0200 Subject: [PATCH] iohelpers: fix cout redirection typo --- src/iohelpers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/iohelpers.cpp b/src/iohelpers.cpp index 7cc7951..5b482f1 100644 --- a/src/iohelpers.cpp +++ b/src/iohelpers.cpp @@ -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() );