Merge pull request #55 from gansm/master

merged commit
This commit is contained in:
Markus Gans 2020-05-03 15:38:22 +02:00 committed by GitHub
commit 9b6f0d5951
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}