diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-08-18 13:25:56 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-08-18 16:27:19 +0200 |
commit | 4ef25107c144ea05ded1d797bf4d93f2d7044e14 (patch) | |
tree | f3aa0d160e206b72411e3cbf9b434c0b879a9969 /starmath | |
parent | 83c4cdf4b8469dbe905349cc63b3b3512108e368 (diff) |
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 <sbergman@redhat.com>
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/mathml/import.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |