vscode-clang icon indicating copy to clipboard operation
vscode-clang copied to clipboard

Cannot navigate to code where nested namespaces are defined as another namespce

Open pranavladkat opened this issue 9 years ago • 1 comments

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();
}

pranavladkat avatar Aug 30 '16 19:08 pranavladkat

Is this extension provide code navigation?

See this : https://github.com/mitaki28/vscode-clang/issues/11

idears-org avatar Sep 15 '16 02:09 idears-org