amir9480 / vscode-cpp-helper

vscode extension to create implementation for c++ function prototypes.

Home Page:https://marketplace.visualstudio.com/items?itemName=amiralizadeh9480.cpp-helper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Class member function implementation generator doesn't work if there're comments

SineStriker opened this issue · 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);
}