vscode-cpp-helper
vscode-cpp-helper copied to clipboard
Issue with a nested class defined "externally"
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.
also creating implementation for function returning nested class also work incorrectly