[Bug c++/30745] Undefined static const

2010-10-17 Thread sch...@linux-m68k.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30745 Andreas Schwab changed: What|Removed |Added CC||rarrum at gmail dot com --- Comment #7 f

[Bug c++/30745] Undefined static const

2008-05-18 Thread paolo dot carlini at oracle dot com
--- Comment #6 from paolo dot carlini at oracle dot com 2008-05-19 00:10 --- *** Bug 36261 has been marked as a duplicate of this bug. *** -- paolo dot carlini at oracle dot com changed: What|Removed |Added

[Bug c++/30745] Undefined static const

2007-08-23 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2007-08-23 16:34 --- *** Bug 33161 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug c++/30745] Undefined static const

2007-05-12 Thread schwab at suse dot de
--- Comment #4 from schwab at suse dot de 2007-05-12 09:15 --- *** Bug 31904 has been marked as a duplicate of this bug. *** -- schwab at suse dot de changed: What|Removed |Added -

[Bug c++/30745] Undefined static const

2007-02-10 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2007-02-10 21:12 --- The definition have to be not inialized if it was already initialized in the declaration The declaration is the one which is inside the class, the definition which is the one which defines the memory space is the on

[Bug c++/30745] Undefined static const

2007-02-10 Thread hans dot buchmann at fhso dot ch
--- Comment #2 from hans dot buchmann at fhso dot ch 2007-02-10 12:17 --- Inserting the line const unsigned Class::MAX_LEN=16; results in the message const-test.cc:13: error: duplicate initialization of 'Class::MAX_LEN' When I place the declaration outside the class the Symbol MA

[Bug c++/30745] Undefined static const

2007-02-09 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2007-02-09 14:52 --- This is not a bug, you still need a definition of the static const variable. You just have a declaration. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added --