Operating System - HP-UX
1753922 Members
7582 Online
108810 Solutions
New Discussion юеВ

mysterious aCC error message

 
Andreas Deierling
New Member

mysterious aCC error message

Hello,
I got an error from aCC where I could not find a solution:
Error 346: ... Ambiguous member reference: 'BswTcpSock' found in base classes namespace Bsw and .
Does anyone has a suggestion what this empty class mean or how I find out what about aCC is complaining ? namespace Bsw and class BswTcpSock are our own but we can't see any ambiguity.
aCC: HP ANSI C++ B3910B A.03.50
HP-UX: 11.11, 64-bit kernel
Andreas
2 REPLIES 2
Stephen Keane
Honored Contributor

Re: mysterious aCC error message

My 2cents worth ...

Make sure you don't have a member function and member variable with the same name ('BswTcpSock')

Do you have a class inherited from another which both define 'BswTcpSock'. If so, are you referencing the correct one?
Andreas Deierling
New Member

Re: mysterious aCC error message

Stephen,
I checked functions and classes.
The whole went through g++ 3.4.3 without any warning... Think I have to take that for the moment. Thanks, Andreas