Re: Bugzilla timing out

2018-01-20 Thread Eric Gallager
On 1/18/18, Frank Ch. Eigler wrote: > > msebor wrote: > >> I'm having trouble bringing up bugs or updating them. Has anyone else >> noticed Bugzilla (and/or other services running on gcc.gnu.org) being >> very slow or timing out? > > One failed disk in the server has been replaced yesterday. Ple

extern const initialized warns in C

2018-01-20 Thread Jay K
extern const int foo = 123; Why does this warn? This is a valid portable form, with the same meaning across all compilers, and, importantly, portably to C and C++. I explicitly do not want to say:   const int foo = 123 because I want the code to be valid and have the same meaning in C and C++