Re: Valid C++?
Alf P. Steinbach wrote:
* Boris:
Is this a valid C++ program (according to the C++ standard)? I ask as
I'm trying to port a Windows library to Solaris, and the Solaris C++
compiler reports an error (The name x is ambiguous in ns1: ns2::x and
ns1::x). The code below reproduces the problem, and I wonder now if I
have to adapt the code or submit a bug report to Sun?
namespace ns1 {
struct x { };
}
namespace ns2 {
using namespace ns1; // If this line is removed ...
void x(); // ... or this line the code compiles.
struct x { };
}
int main()
{
struct ns2::x x;
}
As I recall the code is formally valid but dumb.
Since it's dumb I won't make the effort to look up the standard's
guarantees for you.
Rename.
Or remove the 'using' from 'ns2'. It really is A BAD IDEA(tm) to
have a 'using' directive in the header (no matter whether it's in
another namespace or not).
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask