vscode-cpp-helper icon indicating copy to clipboard operation
vscode-cpp-helper copied to clipboard

Issue with a nested class defined "externally"

Open xni opened this issue 5 years ago • 1 comments

I have a structure like

template <typename T>
struct A {
  struct B;
};

template <typename T>
struct A::B {
  void myMethod();
};

When I click on myMethod() to generate definition, it does not do it right.

xni avatar Dec 18 '20 06:12 xni

also creating implementation for function returning nested class also work incorrectly

kamkamkil avatar Dec 21 '20 21:12 kamkamkil