vscode-clang
vscode-clang copied to clipboard
Cannot navigate to code where nested namespaces are defined as another namespce
In the following piece of code, code navigation (when I press command + left click on function) fails on foobar::print(). Autocompletion works fine.
#include <iostream>
namespace foo { namespace bar {
void print () { std::cout << "foo bar" << std::endl; }
}}
int main() {
namespace foobar = foo::bar;
foobar::print();
}
Is this extension provide code navigation?
See this : https://github.com/mitaki28/vscode-clang/issues/11