On Fri, Apr 23, 2010 at 9:58 PM, HyperQuantum wrote:
> On Fri, Apr 23, 2010 at 8:39 PM, Manuel López-Ibáñez
> wrote:
>> What reasons keep you from contributing to GCC?
>
> The lack of time, for the most part.
I submitted a feature request once. It's now four years old, s
On Fri, Apr 23, 2010 at 8:39 PM, Manuel López-Ibáñez
wrote:
> This seems to be the question running around the blogosphere for
> several projects. And I would like to ask all people that read this
> list but hardly say or do anything.
>
> What reasons keep you from contributing to GCC?
The lack o
In the list of changes for GCC 4.5 there's the following example:
#include
int main()
{
vector v;
for (int k = 0; k > 1024; ++k)
v.insert(v.begin(), k);
}
The declaration of v needs the 'std::' qualification, and the loop
test should use '<' instead of '>'.
Right?