This is the mail archive of the gcc-bugs@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]

gcc-3.3-cvs: How long will the "using" parse error remain?


Hi!

I thought this bug had gone by now ...
The well-known parser error with "using NamespaceName::something;" below
is still available in today's gcc-3.3-cvs.

When I reported the error in November it was said that this was a well-known
issue (http://gcc.gnu.org/ml/gcc-bugs/2002-11/msg01516.html)

This is a rather annoying and IMHO severe showstopper.

- Am I the only one using namespaces?
- Why does it take so long to get around that one?
- Are there any plans to fix this in the near future and why?


class C {};

namespace A {
  void operator+(C c1, C c2) {}
}

int main()
{
  using A::operator+;
}


best regards,

Markus


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