summaryrefslogtreecommitdiffstats
path: root/include/com
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-26 13:42:48 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-26 13:44:08 +0100
commit6da3bd044fb707f08f01719a80fc648c68c9a535 (patch)
tree1d32d496011924b6a3f38a53daa1b759906d068f /include/com
parentfdo#71434: don't show master text if PlaceHolder types defined (diff)
downloadcore-6da3bd044fb707f08f01719a80fc648c68c9a535.tar.gz
core-6da3bd044fb707f08f01719a80fc648c68c9a535.zip
const fix
Change-Id: I9abd4fa85d3d5718dffc0f03e3cc662a17a78ac8
Diffstat (limited to 'include/com')
-rw-r--r--include/com/sun/star/uno/Any.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/com/sun/star/uno/Any.hxx b/include/com/sun/star/uno/Any.hxx
index e86322ff3b8f..986b045d5f29 100644
--- a/include/com/sun/star/uno/Any.hxx
+++ b/include/com/sun/star/uno/Any.hxx
@@ -598,7 +598,7 @@ sal_uInt16 Any::get<sal_uInt16>() const;
@since LibreOffice 4.2
*/
template<typename charT, typename traits>
-inline std::basic_ostream<charT, traits> &operator<<(std::basic_ostream<charT, traits> &o, Any &any) {
+inline std::basic_ostream<charT, traits> &operator<<(std::basic_ostream<charT, traits> &o, Any const &any) {
o << "<Any: (" << any.getValueTypeName() << ')';
switch(any.pType->eTypeClass) {
case typelib_TypeClass_VOID: