Re: Indexer failes after getting scope resolution op (::)
Re: Indexer failes after getting scope resolution op (::)
- Subject: Re: Indexer failes after getting scope resolution op (::)
- From: Kevin Grant <email@hidden>
- Date: Tue, 23 Mar 2004 20:03:59 -0600
The indexer gets confused after it has to parse a scope resolution
operator (::) in the following construct:
class MyClass
{
::global_type foo();
void bar();
};
The occurence of the scope resolution operator causes the indexer not
to properly index the subsequent members in the same class. That is,
the member bar() will not be listed in the member list in the class
browser.
You can probably get around this by rewriting the code in some
equivalent way, e.g. a "typedef" somewhere inside or outside the class,
such that foo() is written to return the aliased typename.
But if this is a bug you want fixed, I would use
http://bugreporter.apple.com to make sure Apple knows about it.
Kevin G.
http://homepage.mac.com/kmg/
mail to kevin at ieee dot org
_______________________________________________
xcode-users mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/xcode-users
Do not post admin requests to the list. They will be ignored.