help-gplusplus
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: New g++ 3.4.3 Bug ?


From: Paul Pluzhnikov
Subject: Re: New g++ 3.4.3 Bug ?
Date: Mon, 15 Jan 2007 09:50:17 -0800
User-agent: Gnus/5.1006 (Gnus v5.10.6) XEmacs/21.4 (Jumbo Shrimp, linux)

"joseph  cook" <joecook@gmail.com> writes:

> I seem to have run across a g++ 3.4.3 Bug.

You need to specify 'g++ --version' for people to be able to
reproduce the bug you are reporting.

> This program will not compile:  (Internal ERROR : Segmentation Fault)

Compiles just fine here:

$ cat junk.cc
#include <vector>

class myClass 
{ 
  std::vector<float> m_buffer[75000]; 
}; 
int main() { } 

$ /usr/local/gcc-3.4.3/bin/g++ --version && 
  /usr/local/gcc-3.4.3/bin/g++ -c junk.cc && echo ok
g++ (GCC) 3.4.3
Copyright (C) 2004 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

ok

Cheers,
-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]