reignofwebber / vscode-c-cpp-definition-generator

MIT License
29 stars 8 forks source link

Not working properly when function returns a pointer #24

Open KaloyanTs opened 2 years ago

KaloyanTs commented 2 years ago

Header file

struct Cl { const char *p(); };

Definiton file created

include "cl.hpp"

*//must be const char *Cl::p()** const char Cl::*p() {

}