Re: [PATCH] Fix dupplicate declaration of ggc_realloc in gencondmd PR63429

2014-10-03 Thread Jeff Law
On 10/02/14 19:53, tsaund...@mozilla.com wrote: From: Trevor Saunders Hi, If vec.h is included before ggc.h it forward declares ggc_realloc with defaulted arguments. This means ggc.h can not be included later because it would lead to a second declaration of ggc_realloc with defaulted argument

[PATCH] Fix dupplicate declaration of ggc_realloc in gencondmd PR63429

2014-10-02 Thread tsaunders
From: Trevor Saunders Hi, If vec.h is included before ggc.h it forward declares ggc_realloc with defaulted arguments. This means ggc.h can not be included later because it would lead to a second declaration of ggc_realloc with defaulted arguments. In generator programs vec.h can not include gg