I'm having trouble getting my clang-format to quite cooperate with multi-line comments. I have tried:
CodePragmas: '^[^ ]'
But this still results in the following. Before formatting:
class Test
{
/* =======
* Public Functions
* ======== */
public:
};
After formatting:
class Test
{
/* =======
* Public Functions
* ======== */
public:
};
Any help would be greatly appreciated. Thanks.