sal/inc/rtl/string.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 515de997f69222b06a07ce9a95e8610cc9c7cbcc
Author: Herbert Dürr <h...@apache.org>
Date:   Thu May 16 07:25:49 2013 +0000

    fix constness issue causing a build breaker

diff --git a/sal/inc/rtl/string.hxx b/sal/inc/rtl/string.hxx
index 951fa78..dcd6ca4 100644
--- a/sal/inc/rtl/string.hxx
+++ b/sal/inc/rtl/string.hxx
@@ -947,7 +947,7 @@ struct CStringHash
     size_t operator()( const char* p) const {
         size_t n = 0;
         while( *p)
-            n += 4*n + *static_cast<unsigned char*>(p++);
+            n += 4*n + *static_cast<const unsigned char*>(p++);
         return n;
     }
 };
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to