summaryrefslogtreecommitdiffstats
path: root/include/com
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2019-02-13 14:14:35 +0100
committerMichael Stahl <Michael.Stahl@cib.de>2019-02-13 16:01:08 +0100
commite0dbab555bf6811e2ef5d908f481667fc0afef4f (patch)
tree72a33b2927c750ede9eabf5d52fe4b2c8f5611fe /include/com
parenttdf#123266 make cursors svg ready for better resizing. (diff)
downloadcore-e0dbab555bf6811e2ef5d908f481667fc0afef4f.tar.gz
core-e0dbab555bf6811e2ef5d908f481667fc0afef4f.zip
fix Sequence ostream operator<< wrt. const
Change-Id: I924f5d8505f2c2132c79304e19cf89a8ef466ae4 Reviewed-on: https://gerrit.libreoffice.org/67771 Tested-by: Jenkins Reviewed-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'include/com')
-rw-r--r--include/com/sun/star/uno/Sequence.hxx2
1 files changed, 1 insertions, 1 deletions
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();