Nothing of C++ Helper works anymore after calling "Create Implementation" with a special constructor in your class
If you call "Create Implementation Here" in a class with a special constructor the extension won't work anymore. No C++ helper function works until restart of VSCode.
Example: Create a *.hpp file and insert:
class StateR : public State
{
public:
StateR(IState* f_stateHandling):
State()
{};
boolean nextState();
};
Call "Create Implementation Here" on the nextState. Nothing will happen. No other "Create Implementation" methods will work anymore.
+1
I guess the regex I used for parsing is broken on your code. You can check the regex used here:
https://github.com/amir9480/vscode-cpp-helper/blob/master/src/FunctionDetails.ts#L85
Thanks for the feedback but I have same the regular expressions like you (in your link). I feel there is something wrong with them.