Cygwin build fix

This commit is contained in:
Markus Gans 2020-05-03 13:45:47 +02:00
parent 21267f7ead
commit 4a8b863238
1 changed files with 1 additions and 1 deletions

View File

@ -1645,7 +1645,7 @@ std::ostream& operator << (std::ostream& outstr, const FString& s)
}
else if ( width > 0 )
{
const FString fill_str{width, outstr.fill()};
const FString fill_str{width, wchar_t(outstr.fill())};
outstr << s.wc_to_c_str(fill_str.string);
}