This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCSv6.01.00040: C/C++ Formatter

Guru 19935 points

Hello,

I couldn't find any option in the C/C++ Formatter that would keep each item in a comma separated list on a separate.  For example, the formatter puts all enumeration constants on a single line (see below).

Am I missing something.  If not does TI have another formatter?

Stephen

The formatter changes the following 

enum 
{
    ABC_1 = 0,
    ABC_2,
    ABC_3,
    ABC_4,
    ABC_5,
    ABC_6,
    ABC_8,
    ABC_9,
    ABC_10 
};

To 

enum
{
    ABC_1 = 0, ABC_2, ABC_3, ABC_4, ABC_5, ABC_6, ABC_8, ABC_9, ABC_10
};