Hi all, So it seems that I have still broken the Fedora buildbot, http://ci.apache.org/builders/tserver-fedora-trunk/builds/1168:
CXX test_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 when assuming that (X + c) < X is always false Vec.h:616: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false The error is apparantly here, which is a bit confusing: 614 template <class C, class A, int S> inline void 615 Vec<C,A,S>::reserve(int x) { 616 if (x <= n) 617 return; I tested that master builds fine on Fedora17 w/ gcc 4.7.0-5 and "make check" passes. Does anyone know what version of Fedora this buildbot is running? J