commit | 375f09f5bf2d63b9db3960f4723d8ee12fa3e25e | [log] [tgz] |
---|---|---|
author | Eli Friedman <eli.friedman@gmail.com> | Fri Dec 16 22:12:23 2011 +0000 |
committer | Eli Friedman <eli.friedman@gmail.com> | Fri Dec 16 22:12:23 2011 +0000 |
tree | aea8f36b8b86297a263228f44b417e45452ba204 | |
parent | 864711ee9f0882c61c2ec284e1294b9944e13452 [diff] [blame] |
Add missing flush call. This is an attempt to fix a broken Windows buildbot. llvm-svn: 146760
diff --git a/clang/lib/AST/APValue.cpp b/clang/lib/AST/APValue.cpp index 0d4dea8..2a68341 100644 --- a/clang/lib/AST/APValue.cpp +++ b/clang/lib/AST/APValue.cpp
@@ -480,6 +480,7 @@ std::string Result; llvm::raw_string_ostream Out(Result); printPretty(Out, Ctx, Ty); + Out.flush(); return Result; }