This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Multiply Defined Inline Constructors


"Conley, John H" <JohnH.Conley@xerox.com> writes:

> class A : public parentA {

> class A: public parentB {

This is a C++ ODR violation.  Your program is undefined.  There is no
reliable way to make this work.  I recommend putting one or both classes
in a namespace.

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]