generated from nvim-treesitter/module-template
-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
When using TSCppDefineClassFunc on a method inside of a namespace, the function should be defined with the namespace.
Example header file:
namespace A {
void b();
class C {
void d();
C e(C param);
};
}Expected output when using TSCppDefineClassFunc:
void A::b() {}
void A::C::d() {}
A::C e(C param) {}Currently, this just outputs the following (notice the lack of namespaces):
void b() {}
void C::d() {}
C C::e(C param) {}PAMinerva
Metadata
Metadata
Assignees
Labels
No labels