tserver-fedora-trunk buildbot break

2012-07-10 Thread James Peach
Hi all, So it seems that I have still broken the Fedora buildbot, http://ci.apache.org/builders/tserver-fedora-trunk/builds/1168: CXXtest_Vec.o cc1plus: warnings being treated as errors Vec.h: In function ‘int main(int, char**)’: Vec.h:616: error: assuming signed overflow does not occur

Re: tserver-fedora-trunk buildbot break

2012-07-10 Thread James Peach
On 10/07/2012, at 11:16 AM, James Peach jpe...@apache.org wrote: Hi all, So it seems that I have still broken the Fedora buildbot, http://ci.apache.org/builders/tserver-fedora-trunk/builds/1168: CXXtest_Vec.o cc1plus: warnings being treated as errors Vec.h: In function ‘int

Re: tserver-fedora-trunk buildbot break

2012-07-10 Thread Alan M. Carroll
I did a bit of netsearching and I think I see the problem, although I don't have a good solution. It is a result of optimization in the call sequence in test_append that calls str.append(value,len) which calls reserve(length() + count). length() is inlined to a reference to n so the argument is

Re: tserver-fedora-trunk buildbot break

2012-07-10 Thread James Peach
On 10/07/2012, at 3:17 PM, Alan M. Carroll a...@thought-mesh.net wrote: I did a bit of netsearching and I think I see the problem, although I don't have a good solution. It is a result of optimization in the call sequence in test_append that calls str.append(value,len) which calls