Sublime Forum

Bug in C/C++ mode

#1

Hi,

It seems like sublime does not tolerate this form of declaration:

[code]/**

  • @brief Specific information on a cycle runnable.
    /
    typedef struct RunnableCycle
    {
    U16 id; /
    !< Cycle identifier. */
    }
    RunnableCycle;[/code]
    As seen here:

    Whereas this other form works:

[code]/**

  • @brief Specific information on a cycle runnable.
    /
    typedef struct RunnableCycle
    {
    U16 id; /
    !< Cycle identifier. */
    } RunnableCycle;[/code]

    Or maybe there is an option to change that behavior ?

Thx

Alex

0 Likes