vscode-cpp-helper
vscode-cpp-helper copied to clipboard
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.