vscode-cpp-helper
vscode-cpp-helper copied to clipboard
Class member function implementation generator doesn't work if there're comments
class Locale {
public:
...
/**
* @brief Current locale
*
* @return Locale enumeration
*/
int locale() const; // Right click here and create implementation, it doesn't work
void setLocale(int locale);
}