Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
Qt Creator 3.1.1
-
None
-
9b6d4573aa494851939f775ce6a5c861968182cd
Description
Also Find Usages doesn't find such usages. Autocompletion and member highlighting does work though.
"using namespace Ns" works as expected.
foo.h:
namespace Ns { struct Foo { int bar; }; }
using Ns::Foo;
main.cpp:
#include "foo.h" void func() { Foo foo; // Foo not highlighted foo.bar = 42; // bar highlighted, autocompletion works }