[cfe-commits] r146760 - /cfe/trunk/lib/AST/APValue.cpp

Eli Friedman eli.friedman at gmail.com
Fri Dec 16 14:12:23 PST 2011


Author: efriedma
Date: Fri Dec 16 16:12:23 2011
New Revision: 146760

URL: http://llvm.org/viewvc/llvm-project?rev=146760&view=rev
Log:
Add missing flush call.  This is an attempt to fix a broken Windows buildbot.


Modified:
    cfe/trunk/lib/AST/APValue.cpp

Modified: cfe/trunk/lib/AST/APValue.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/APValue.cpp?rev=146760&r1=146759&r2=146760&view=diff
==============================================================================
--- cfe/trunk/lib/AST/APValue.cpp (original)
+++ cfe/trunk/lib/AST/APValue.cpp Fri Dec 16 16:12:23 2011
@@ -480,6 +480,7 @@
   std::string Result;
   llvm::raw_string_ostream Out(Result);
   printPretty(Out, Ctx, Ty);
+  Out.flush();
   return Result;
 }
 





More information about the cfe-commits mailing list