Bug #17988 2011-03-07 18:30
kalith
"Find implementation" fails with using namespace
If a class Foo is declared inside a namespace Bar, and has a member function Fee, then the "Find implementation" command will fail if the implementation is written the following way :
using namespace Bar;
void Foo::Fee()
{
...
}
The following fashions are however parsed correctly :
void Bar::Foo::Fee()
{
...
}
namespace Bar {
void Foo::Fee()
{
...
}
}
The symbol browser is able to parse all these examples just fine.
- Category
- Plugin::CodeCompletion
- Group
- Status
- Open
- Close date
- Assigned to