On Tue, Mar 28, 2006 at 01:56:20PM -0600, Jerry Amundson wrote:
> Using Fedora Core 5 and gcc-c++-4.1.0-3 - looks like a gcc4 quirk, but
> thought I'd pass it along...
I don't think it is a quirk, there is no reason to qualify them, since
they are declared as class members. It is clearly useless to declare the
class member functions as,
class fsobj { int fsobj::foo(); };
since we already know what class the member belongs to.
And it would probably be invalid to have the following code, which
tries to declare it as a member of a different class,
class fsobj { int bar::foo(); };
Jan