c++ - Broken using declaration when used on subscript operator
- "Matthew" <admin stlsoft.dot.dot.dot.dot.org> Aug 05 2005
- "Matthew" <matthew hat.stlsoft.dot.org> Sep 10 2005
class A
{
public:
int operator [](int index) const;
};
class B
{
public:
int operator [](int index) const;
};
class C
: public A
, public B
{
public:
using A::operator [];
};
H:\STLSoft\Releases\1.9.x\STLSoft\unittest\build\dm>dmc
using_subs.cpp
using A::operator [];
^
Aug 05 2005
Any traction on this bug? "Matthew" <admin stlsoft.dot.dot.dot.dot.org> wrote in message news:dd1jbu$s4c$1 digitaldaemon.com...class A { public: int operator [](int index) const; }; class B { public: int operator [](int index) const; }; class C : public A , public B { public: using A::operator []; }; H:\STLSoft\Releases\1.9.x\STLSoft\unittest\build\dm>dmc using_subs.cpp using A::operator []; ^
Sep 10 2005








"Matthew" <matthew hat.stlsoft.dot.org>