[Bug c++/25940] multiple definitions of extern "C" functions

2018-08-31 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25940 Andrew Pinski changed: What|Removed |Added CC||tiagomacarios at gmail dot com --- Comme

[Bug c++/25940] multiple definitions of extern "C" functions

2014-11-06 Thread pinskia at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25940 Andrew Pinski changed: What|Removed |Added CC||nlewycky at google dot com --- Comment #

[Bug c++/25940] multiple definitions of extern "C" functions

2006-02-01 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-02-01 18:15 --- Related closely to PR 13699. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added BugsT

[Bug c++/25940] multiple definitions of extern "C" functions

2006-01-25 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2006-01-25 10:52 --- Shorter testcase: namespace N1 { extern "C" int func (int); int func (int) {} }; namespace N2 { extern "C" int func (int); int func (int) {} }; not a regression from anything. Not dependent on weird cross

[Bug c++/25940] multiple definitions of extern "C" functions

2006-01-24 Thread pinskia at gcc dot gnu dot org
--- Comment #1 from pinskia at gcc dot gnu dot org 2006-01-24 12:40 --- Confirmed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|UNCON