Fixes [Bug 15960] YAMLTraits doesn't roundtrip on Windows.

Thanks to Kim Gräsman for help!

llvm-svn: 181699
This commit is contained in:
Alexander Kornienko 2013-05-13 12:41:08 +00:00
parent d9da20f56f
commit 31f75e3f0a
1 changed files with 1 additions and 0 deletions

View File

@ -191,6 +191,7 @@ std::string configurationAsText(const FormatStyle &Style) {
// reference here.
FormatStyle NonConstStyle = Style;
Output << NonConstStyle;
Stream.flush();
return Text;
}