This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
gcc-3.3-cvs: How long will the "using" parse error remain?
- From: Markus Werle <numerical dot simulation at web dot de>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Mon, 27 Jan 2003 15:12:58 +0100
- Subject: 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