starmath/source/mathml/import.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 4ef25107c144ea05ded1d797bf4d93f2d7044e14 Author: Stephan Bergmann <sberg...@redhat.com> AuthorDate: Wed Aug 18 13:25:56 2021 +0200 Commit: Stephan Bergmann <sberg...@redhat.com> CommitDate: Wed Aug 18 16:27:19 2021 +0200 Don't use std::ostream operator <<(char16_t const *) deleted in C++20 similar to 4af56d8189012f96d0471d7f50a3e44636666516 "Don't use std::ostream operator <<(char16_t const *) deleted in C++20" Change-Id: Ica7b02c14b66fea64f630bed4943c04ae999485e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120662 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sberg...@redhat.com> diff --git a/starmath/source/mathml/import.cxx b/starmath/source/mathml/import.cxx index f1987d370971..e353f38ff72c 100644 --- a/starmath/source/mathml/import.cxx +++ b/starmath/source/mathml/import.cxx @@ -375,7 +375,7 @@ ErrCode SmMLImportWrapper::ReadThroughComponent(const Reference<io::XInputStream OUString(pFilterName), aArgs, rxContext); if (!xFilter.is()) { - SAL_WARN("starmath", "Can't instantiate filter component " << pFilterName); + SAL_WARN("starmath", "Can't instantiate filter component " << OUString(pFilterName)); return ERRCODE_SFX_DOLOADFAILED; }