[llvm-commits] [llvm] r51709 - /llvm/trunk/lib/System/Unix/Program.inc

Bill Wendling isanbard at gmail.com
Thu May 29 15:02:08 PDT 2008


Author: void
Date: Thu May 29 17:02:08 2008
New Revision: 51709

URL: http://llvm.org/viewvc/llvm-project?rev=51709&view=rev
Log:
Unbreak build.

Modified:
    llvm/trunk/lib/System/Unix/Program.inc

Modified: llvm/trunk/lib/System/Unix/Program.inc
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Unix/Program.inc?rev=51709&r1=51708&r2=51709&view=diff

==============================================================================
--- llvm/trunk/lib/System/Unix/Program.inc (original)
+++ llvm/trunk/lib/System/Unix/Program.inc Thu May 29 17:02:08 2008
@@ -17,8 +17,8 @@
 //===----------------------------------------------------------------------===//
 
 #include <llvm/Config/config.h>
-#include <llvm/Support/Streams.h>
 #include "Unix.h"
+#include <iostream>
 #if HAVE_SYS_STAT_H
 #include <sys/stat.h>
 #endif
@@ -210,8 +210,8 @@
   }
 
   // Make sure stderr and stdout have been flushed
-  cerr.flush();
-  cout.flush();
+  std::cerr << std::flush;
+  std::cout << std::flush;
   fsync(1);
   fsync(2);
 





More information about the llvm-commits mailing list