Home > Back-end >  Please use clang - format format code, how to set up a cancel automatic synthesis of a line array fo
Please use clang - format format code, how to set up a cancel automatic synthesis of a line array fo

Time:11-06

If there are any array
XXX_t daily_t []={
{1, 10},
{2, 12},
{3, 13},
{4, 14},
};
Or
Char * latest_str [3]={
"Arjun,"
"Arjun,"
"Jumped",
};
Will be formatted into
XXX_t daily_t []={
{1, 10}, {2, 12}, {3, 13}, {4, 14},
};
And
Char * latest_str [3]={
Arjun, arjun, "" jumped",
};
How do I keep the format of the line

CodePudding user response:

Search astyle
  • Related