include/com/sun/star/uno/Sequence.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit e0dbab555bf6811e2ef5d908f481667fc0afef4f Author: Michael Stahl <[email protected]> AuthorDate: Wed Feb 13 14:14:35 2019 +0100 Commit: Michael Stahl <[email protected]> CommitDate: Wed Feb 13 16:01:08 2019 +0100 fix Sequence ostream operator<< wrt. const Change-Id: I924f5d8505f2c2132c79304e19cf89a8ef466ae4 Reviewed-on: https://gerrit.libreoffice.org/67771 Tested-by: Jenkins Reviewed-by: Michael Stahl <[email protected]> diff --git a/include/com/sun/star/uno/Sequence.hxx b/include/com/sun/star/uno/Sequence.hxx index 33014a81a4fd..83ddfb9d8101 100644 --- a/include/com/sun/star/uno/Sequence.hxx +++ b/include/com/sun/star/uno/Sequence.hxx @@ -254,7 +254,7 @@ void sequence_output_bytes( std::basic_ostream<charT, traits> &os, const value_t @since LibreOffice 6.1 */ template< typename value_t, typename charT, typename traits > -inline std::basic_ostream<charT, traits> &operator<<(std::basic_ostream<charT, traits> &os, css::uno::Sequence < value_t > &v) +inline std::basic_ostream<charT, traits> &operator<<(std::basic_ostream<charT, traits> &os, css::uno::Sequence<value_t> const& v) { const value_t *pAry = v.getConstArray(); sal_Int32 nLen = v.getLength(); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
