amir9480 / vscode-cpp-helper

vscode extension to create implementation for c++ function prototypes.
https://marketplace.visualstudio.com/items?itemName=amiralizadeh9480.cpp-helper
MIT License
355 stars 31 forks source link

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

Open SineStriker opened 1 year ago

SineStriker commented 1 year ago
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);
}