Bug #11618 2007-07-23 13:25
indigo0086
Symbols do not show from 'using namespace' declared objects
when trying do use code completion for objects created by a using namespace declaration, they do not parse for the functions in the object later
for example.
---
using boost::thread_group;
int main()
{
thread_group threads;
threads.---
return 0;
}
---
Does not automatically look up the members where the --- are
but if I do
int main()
{
boost::thread_group threads;
threads.---
return 0;
}
then the objects show
- Category
- Plugin::CodeCompletion
- Group
- Status
- Closed
- Close date
- 2010-10-16 01:28
- Assigned to
- loaden
History
loaden 2010-10-16 01:28
This bug has been already fixed in HEAD.
Thank you.