Bug #11276 2007-06-07 23:28

indigo0086

using directives obscure instantiated class members.

I've noticed that code-completion doesn't work for objects that were created from usign directives. For example if I do

[code]

using boost::thread_group;

int main()

{

thread_group threads;

threads.---

return 0;

}

[/code]

does not automatically look up the members where the --- are

but if I do

[code]

int main()

{

boost::thread_group threads;

threads.---

return 0;

}

[/code]

this one automatically autolooks up the members of the thread. Usually with the stl I wouldn't mind but with libraries like boost which I'm learning it's hard to look up functions I need.

Category
Application::WrongBehaviour
Group
 
Status
Open
Close date
 
Assigned to