[Bug c++/25940] multiple definitions of extern "C" functions
rguenth at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Wed Jan 25 10:53:00 GMT 2006
------- 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 configuration.
--
rguenth at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
GCC build triplet|sparc-sun-solaris2.5.1 |
GCC host triplet|i386-pc-mingw32 |
GCC target triplet|powerpc-wrs-vxworks |
Known to fail| |3.4.5 4.0.2 4.1.0 4.2.0
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=25940
More information about the Gcc-bugs
mailing list