Re: svn commit: r1483216 - /openoffice/trunk/main/sal/inc/rtl/string.hxx

2013-05-16 Thread Ariel Constenla-Haile
On Thu, May 16, 2013 at 4:25 AM, h...@apache.org wrote: Author: hdu Date: Thu May 16 07:25:49 2013 New Revision: 1483216 URL: http://svn.apache.org/r1483216 Log: fix constness issue causing a build breaker Modified: openoffice/trunk/main/sal/inc/rtl/string.hxx Modified:

Re: svn commit: r1483216 - /openoffice/trunk/main/sal/inc/rtl/string.hxx

2013-05-16 Thread jorge ivan poot diaz
Hello Ariel, In my local directory: size_t operator()( const char* p) const { size_t n = 0; while( *p) n += 4*n + *static_castunsigned char*(p++); return n; I have already made the change, but the error persists. (pastebin, do not open the page) but here is

Re: svn commit: r1483216 - /openoffice/trunk/main/sal/inc/rtl/string.hxx

2013-05-16 Thread Ariel Constenla-Haile
On Thu, May 16, 2013 at 09:03:26AM -0500, jorge ivan poot diaz wrote: Hello Ariel, In my local directory: size_t operator()( const char* p) const { size_t n = 0; while( *p) n += 4*n + *static_castunsigned char*(p++); return n; Update your local copy,

Re: svn commit: r1483216 - /openoffice/trunk/main/sal/inc/rtl/string.hxx

2013-05-16 Thread Herbert Dürr
On 2013/05/16 4:08 PM, Ariel Constenla-Haile wrote: On Thu, May 16, 2013 at 09:03:26AM -0500, jorge ivan poot diaz wrote: Hello Ariel, In my local directory: size_t operator()( const char* p) const { size_t n = 0; while( *p) n += 4*n + *static_castunsigned